diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-27 15:38:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-27 15:38:46 +0000 |
commit | 70fe84eac16cadd093d18f3c93ace167261e85e9 (patch) | |
tree | c28b8c552108561f97de126e52df6295c9d23985 /main/abuild/APKBUILD | |
parent | 20b0d4bd9952f14fec20632503870d57d84a61e2 (diff) | |
download | aports-70fe84eac16cadd093d18f3c93ace167261e85e9.tar.bz2 aports-70fe84eac16cadd093d18f3c93ace167261e85e9.tar.xz |
main/abuild: fix for buildrepo
Diffstat (limited to 'main/abuild/APKBUILD')
-rw-r--r-- | main/abuild/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/abuild/APKBUILD b/main/abuild/APKBUILD index f3b6f23bba..fdbe5d42b9 100644 --- a/main/abuild/APKBUILD +++ b/main/abuild/APKBUILD @@ -2,9 +2,10 @@ pkgdesc="Script to build Alpine Packages" pkgname=abuild pkgver=2.0 -pkgrel=0 +pkgrel=1 url=http://git.alpinelinux.org/cgit/abuild/ source="http://git.alpinelinux.org/cgit/abuild/snapshot/abuild-$pkgver.tar.bz2 + 0001-Revert-abuild-minor-cleanup.patch " depends="fakeroot file sudo pax-utils openssl apk-tools" makedepends="openssl-dev pkgconfig" @@ -12,9 +13,12 @@ license=GPL-2 build() { cd "$srcdir/$pkgname-$pkgver" + patch -p1 -i ../0001-Revert-abuild-minor-cleanup.patch || return 1 + make make install DESTDIR="$pkgdir" install -m 644 abuild.conf "$pkgdir"/etc/abuild.conf } -md5sums="8c915c2d87e12731a8dbee8241653a32 abuild-2.0.tar.bz2" +md5sums="8c915c2d87e12731a8dbee8241653a32 abuild-2.0.tar.bz2 +478fa174e76501b2b37c47f2bc491559 0001-Revert-abuild-minor-cleanup.patch" |