diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-05 03:26:45 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-06 22:04:48 -0300 |
commit | 0df3c472ed7adcb8c9fbf5792e8e1ba1f09a96e5 (patch) | |
tree | 5b56f62040fbb95c3415020b01bfe909931562af /community/archivemount | |
parent | 02549a63c2832364d121609ce27a9241f05ae632 (diff) | |
download | aports-0df3c472ed7adcb8c9fbf5792e8e1ba1f09a96e5.tar.bz2 aports-0df3c472ed7adcb8c9fbf5792e8e1ba1f09a96e5.tar.xz |
community/archivemount: modernize, fix url
Diffstat (limited to 'community/archivemount')
-rw-r--r-- | community/archivemount/APKBUILD | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/community/archivemount/APKBUILD b/community/archivemount/APKBUILD index 9513f6de8d..23f02ba379 100644 --- a/community/archivemount/APKBUILD +++ b/community/archivemount/APKBUILD @@ -2,21 +2,17 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=archivemount pkgver=0.8.12 -pkgrel=0 +pkgrel=1 pkgdesc="FUSE based filesystem for mounting compressed archives" -url="http://www.cybernoia.de/software/archivemount" +options="!check" # No testsuite +url="https://github.com/bramp/archivemount" arch="all" license="LGPL-2.0-or-later" -depends="" -depends_dev="" -makedepends="$depends_dev fuse-dev libarchive-dev" -install="" +makedepends="fuse-dev libarchive-dev" subpackages="$pkgname-doc" -source="$url/$pkgname-$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" +source="https://www.cybernoia.de/software/archivemount/$pkgname-$pkgver.tar.gz" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -29,7 +25,6 @@ build() { } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |