diff options
author | Jean-Louis Fuchs <ganwell@fangorn.ch> | 2018-06-10 18:10:11 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-12 09:27:51 +0000 |
commit | b36787bc0b99c7e3dc10fff76f7ae6b020b6c9f7 (patch) | |
tree | e93b95fade17733f954f151bfc36445a428c0b22 /community | |
parent | 6eaee0492ca7f40cbb5485710ce365debb8a1afd (diff) | |
download | aports-b36787bc0b99c7e3dc10fff76f7ae6b020b6c9f7.tar.bz2 aports-b36787bc0b99c7e3dc10fff76f7ae6b020b6c9f7.tar.xz |
community/zathura-ps: upgrade to 0.2.6
Upstream switched to meson build
Diffstat (limited to 'community')
-rw-r--r-- | community/zathura-ps/APKBUILD | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/community/zathura-ps/APKBUILD b/community/zathura-ps/APKBUILD index a3baf3e53a..de45c46d1f 100644 --- a/community/zathura-ps/APKBUILD +++ b/community/zathura-ps/APKBUILD @@ -2,27 +2,29 @@ # Contributor: Jean-Louis Fuchs <ganwell@fangorn.ch> # Maintainer: Jean-Louis Fuchs <ganwell@fangorn.ch> pkgname=zathura-ps -pkgver=0.2.5 +pkgver=0.2.6 pkgrel=0 pkgdesc="zathura-ps - plugin adds PostScript support to zathura" url="https://pwmt.org/projects/$pkgname" arch="all" license="zlib" depends="zathura" -makedepends="zathura-dev poppler-dev libspectre-dev" -source="https://pwmt.org/projects/zathura-ps/download/zathura-ps-$pkgver.tar.gz" +makedepends="zathura-dev poppler-dev libspectre-dev meson ninja" +source="https://pwmt.org/projects/zathura-ps/download/zathura-ps-$pkgver.tar.xz" options="!check" builddir="$srcdir/$pkgname-$pkgver" build() { - make -C "$builddir" + cd "$builddir" + meson build --prefix=/usr + ninja -C build } package() { - make PREFIX=/usr DESTDIR="$pkgdir" \ - -C "$builddir" install + cd "$builddir" + DESTDIR="$pkgdir" ninja -C build install } -sha512sums="043898fdca56bee28a8e2af61d3216af25e222c0a137737e599881bb21e805dd8a609ff2901a50763bdbb34bf2e3fca2afaf1a59b715f3ba6aa067971c99c258 zathura-ps-0.2.5.tar.gz" +sha512sums="6631f9b1c951b6f91f2a5217c3de47176205102206f15b596fb21285dae8d01fd759cfaca1b8a23bf47166dfbc3f8cf6061ce5a4d7a1c3a2b671a3beef5a07bb zathura-ps-0.2.6.tar.xz" |