diff options
author | J0WI <J0WI@users.noreply.github.com> | 2019-01-09 05:16:18 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-01-10 09:21:41 +0000 |
commit | 971399dc36c5768557810567f95ad958c1bb7e94 (patch) | |
tree | 87036e39250f55ef33c56b6b4b352080e0ac0dba /main | |
parent | 85863f590a9cdcd1a2e5bcf772ad49ca4c5d3c37 (diff) | |
download | aports-971399dc36c5768557810567f95ad958c1bb7e94.tar.bz2 aports-971399dc36c5768557810567f95ad958c1bb7e94.tar.xz |
main/tar: use https source, add checks but disable for now
Diffstat (limited to 'main')
-rw-r--r-- | main/tar/APKBUILD | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/main/tar/APKBUILD b/main/tar/APKBUILD index 5e94231bea..1c3c1a5b0b 100644 --- a/main/tar/APKBUILD +++ b/main/tar/APKBUILD @@ -10,7 +10,7 @@ depends="" install="" makedepends="" subpackages="$pkgname-doc" -source="ftp://ftp.gnu.org/gnu/tar/$pkgname-$pkgver.tar.xz +source="https://ftp.gnu.org/gnu/tar/$pkgname-$pkgver.tar.xz ignore-apk-tools-checksums.patch" # secfixes: @@ -34,6 +34,12 @@ build() { make } +# some checks are failing in 1.31 +#check() { +# cd "$builddir" +# make check +#} + package() { cd "$builddir" make DESTDIR="$pkgdir/" install |