diff options
author | Joe Searle <joe@jsearle.net> | 2019-09-22 13:27:07 +0000 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-23 17:32:33 -0300 |
commit | 46264626e53e7785314b3f0a5a59a58049f7a0a8 (patch) | |
tree | dc0e5e65198a0a18581eee0420de25dbab9daad9 /community/potrace | |
parent | 0efaf92bd04cd18212a61bf64a27108ab6ed7b8a (diff) | |
download | aports-46264626e53e7785314b3f0a5a59a58049f7a0a8.tar.bz2 aports-46264626e53e7785314b3f0a5a59a58049f7a0a8.tar.xz |
community/potrace: upgrade to 1.16
Diffstat (limited to 'community/potrace')
-rw-r--r-- | community/potrace/APKBUILD | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/community/potrace/APKBUILD b/community/potrace/APKBUILD index ca18be7602..4110b46995 100644 --- a/community/potrace/APKBUILD +++ b/community/potrace/APKBUILD @@ -6,16 +6,13 @@ pkgrel=0 pkgdesc="Utility for tracing a bitmaps" url="http://potrace.sourceforge.net/" arch="all" -license="GPL" +license="GPL-2.0-or-later" depends_dev="zlib-dev" makedepends="$depends_dev" subpackages="$pkgname-dev $pkgname-doc" source="http://potrace.sourceforge.net/download/$pkgver/$pkgname-$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" - build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -26,12 +23,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |