diff options
author | Jean-Louis Fuchs <jean-louis.fuchs@adfinis-sygroup.ch> | 2020-02-26 15:37:06 +0100 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2020-03-23 09:51:53 +0000 |
commit | 1edfece632fc0d76629c810d415803dc51a5190b (patch) | |
tree | 59dcf7082e7af6587ceb3cd00ed2e0921d747c08 /community/zathura-ps/APKBUILD | |
parent | 5f552ed0e5ebe7e94eb994c4f3d60b0470e1549c (diff) | |
download | aports-1edfece632fc0d76629c810d415803dc51a5190b.tar.gz aports-1edfece632fc0d76629c810d415803dc51a5190b.tar.bz2 aports-1edfece632fc0d76629c810d415803dc51a5190b.tar.xz |
mailmap/email: change my email-address
I use jean-louis.fuchs@adfinis-sygroup.ch in git from now on.
Addition: increment pkgver and fix lint errors.
Diffstat (limited to 'community/zathura-ps/APKBUILD')
-rw-r--r-- | community/zathura-ps/APKBUILD | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/community/zathura-ps/APKBUILD b/community/zathura-ps/APKBUILD index 50580ac6d1..75917eaf2c 100644 --- a/community/zathura-ps/APKBUILD +++ b/community/zathura-ps/APKBUILD @@ -1,31 +1,25 @@ # Contributor: Andrew Hills <ahills@ednos.net> -# Contributor: Jean-Louis Fuchs <ganwell@fangorn.ch> -# Maintainer: Jean-Louis Fuchs <ganwell@fangorn.ch> +# Contributor: Jean-Louis Fuchs <jean-louis.fuchs@adfinis-sygroup.ch> +# Maintainer: Jean-Louis Fuchs <jean-louis.fuchs@adfinis-sygroup.ch> pkgname=zathura-ps pkgver=0.2.6 -pkgrel=4 +pkgrel=5 pkgdesc="zathura-ps - plugin adds PostScript support to zathura" url="https://git.pwmt.org/pwmt/zathura-ps" arch="all" -license="zlib" +license="Zlib" depends="zathura" makedepends="zathura-dev poppler-dev libspectre-dev meson ninja" -source="https://git.pwmt.org/pwmt/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz" - options="!check" +source="https://git.pwmt.org/pwmt/zathura-ps/-/archive/$pkgver/zathura-ps-$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" build() { - cd "$builddir" - meson build \ - --prefix=/usr \ - --buildtype=plain + meson build --prefix=/usr ninja -C build } package() { - cd "$builddir" DESTDIR="$pkgdir" ninja -C build install } |