diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-03-28 12:31:40 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-03-28 13:59:04 +0000 |
commit | de3d6c2eb53c74e250ba15ffc38a39f784f643a0 (patch) | |
tree | 71339dbf0b2b71f930aadaaf5091b2b35111b623 /main/abuild | |
parent | 199edbb340a36afbcee8df7f30038abb19c3f9d3 (diff) | |
download | aports-de3d6c2eb53c74e250ba15ffc38a39f784f643a0.tar.bz2 aports-de3d6c2eb53c74e250ba15ffc38a39f784f643a0.tar.xz |
main/abuild: remove buildroot
its provided by lua-aports
Diffstat (limited to 'main/abuild')
-rw-r--r-- | main/abuild/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/abuild/APKBUILD b/main/abuild/APKBUILD index 43ecbe62fc..d10818696c 100644 --- a/main/abuild/APKBUILD +++ b/main/abuild/APKBUILD @@ -2,7 +2,7 @@ pkgname=abuild pkgver=2.19.2 _ver=${pkgver%_git*} -pkgrel=0 +pkgrel=1 pkgdesc="Script to build Alpine Packages" url="http://git.alpinelinux.org/cgit/abuild/" arch="all" @@ -42,6 +42,8 @@ build() { package() { cd "$_builddir" make install DESTDIR="$pkgdir" || return 1 + # buildrepo is provided by lua-aports now + rm "$pkgdir"/usr/bin/buildrepo || return 1 install -m 644 abuild.conf "$pkgdir"/etc/abuild.conf || return 1 install -d -m 775 -g abuild "$pkgdir"/var/cache/distfiles || return 1 } |