git » quazip.git » commit 8652c51

quazip 1.4

author Urja (ARMLFS builder)
2024-06-19 07:30:59 UTC
committer Urja (ARMLFS builder)
2024-06-19 07:30:59 UTC
parent 194178ea230acc4762bdb6be5092ff1f90aabc7b

quazip 1.4

.gitignore +2 -0
PKGBUILD +8 -4

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a43258a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/src/
+/pkg/
diff --git a/PKGBUILD b/PKGBUILD
index b151df5..1c2058f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,14 +5,18 @@
 # Contributor: trya <tryagainprod@gmail.com>
 
 pkgbase=quazip
-pkgname=(quazip-qt5 quazip-qt6)
+pkgname=(quazip-qt5 
+#quazip-qt6
+)
 pkgver=1.4
 pkgrel=1
 pkgdesc='C++ wrapper for the ZIP/UNZIP C package'
 url='https://stachenov.github.io/quazip/'
 license=(LGPL)
-arch=(x86_64)
-makedepends=(cmake qt5-base qt6-5compat)
+arch=(x86_64 'armv7h')
+makedepends=(cmake qt5-base 
+#qt6-5compat
+)
 source=(https://github.com/stachenov/$pkgbase/archive/v$pkgver/$pkgbase-$pkgver.tar.gz)
 sha256sums=('79633fd3a18e2d11a7d5c40c4c79c1786ba0c74b59ad752e8429746fe1781dd6')
 
@@ -20,7 +24,7 @@ build() {
   cmake -B build5 -S $pkgbase-$pkgver \
     -DCMAKE_INSTALL_PREFIX=/usr
   cmake --build build5
-
+  return 0
   cmake -B build6 -S $pkgbase-$pkgver \
     -DCMAKE_INSTALL_PREFIX=/usr \
     -DQUAZIP_QT_MAJOR_VERSION=6