summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Mattern2020-05-07 23:45:26 +0200
committerPeter Mattern2020-05-07 23:45:26 +0200
commitbb5ca42d90c272523c38347675b082e919119006 (patch)
treee18b0e7d1e83cb19b2bfeb6c311be3f657bba3d9
parentcde886b9d176d7315cd191191adb1fb56ace68b3 (diff)
downloadaur-bb5ca42d90c272523c38347675b082e919119006.tar.gz
Reflect some upstream changes
* QuaZIP: Use system version. * Translations: Build into package, which represents an additional option to downloading the most recent ones at runtime.
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD10
2 files changed, 9 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index adac6fd4e413..efa535e95fa9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,8 @@
-# Generated by mksrcinfo v8
-# Mon Jun 27 22:26:14 UTC 2016
pkgbase = nomacs-git
pkgdesc = Free, open source image viewer, which supports multiple platforms.
- pkgver = 3.2.0.50.g6e79e97
+ pkgver = 3.2.0.1122.gee96415a
pkgrel = 1
- url = http://nomacs.org
+ url = https://nomacs.org
arch = i686
arch = x86_64
license = GPL3
@@ -15,6 +13,7 @@ pkgbase = nomacs-git
depends = exiv2
depends = libraw
depends = opencv
+ depends = quazip
depends = desktop-file-utils
provides = nomacs
conflicts = nomacs
diff --git a/PKGBUILD b/PKGBUILD
index ddb9a9c188bd..7aff1be574b1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,13 +2,13 @@
_pkgname=nomacs
pkgname=$_pkgname-git
-pkgver=3.2.0.50.g6e79e97
+pkgver=3.2.0.1122.gee96415a
pkgrel=1
pkgdesc='Free, open source image viewer, which supports multiple platforms.'
arch=('i686' 'x86_64')
-url='http://nomacs.org'
+url='https://nomacs.org'
license=('GPL3')
-depends=('qt5-svg' 'exiv2' 'libraw' 'opencv' 'desktop-file-utils')
+depends=('qt5-svg' 'exiv2' 'libraw' 'opencv' 'quazip' 'desktop-file-utils')
makedepends=('git' 'cmake' 'qt5-tools')
provides=("$_pkgname")
conflicts=("$_pkgname")
@@ -24,7 +24,9 @@ build() {
rm -Rf build && mkdir build
cd build
cmake "$srcdir/$_pkgname/ImageLounge" \
- -DCMAKE_INSTALL_PREFIX=/usr
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DENABLE_TRANSLATIONS=ON \
+ -DUSE_SYSTEM_QUAZIP=ON
make
}