diff options
Diffstat (limited to 'core/apk-tools/APKBUILD')
-rw-r--r-- | core/apk-tools/APKBUILD | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/core/apk-tools/APKBUILD b/core/apk-tools/APKBUILD index 917aae54d6..7361850ae2 100644 --- a/core/apk-tools/APKBUILD +++ b/core/apk-tools/APKBUILD @@ -1,11 +1,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=apk-tools pkgver=2.0_pre11 -pkgrel=1 +pkgrel=2 pkgdesc="Alpine Package Keeper - package manager for alpine" depends="uclibc" makedepends="zlib-dev" source="http://git.alpinelinux.org/cgit/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2 + delay-state-init.patch + index-delete.patch version.patch" url="http://git.alpinelinux.org/cgit/apk-tools/" license=GPL-2 @@ -14,6 +16,8 @@ build() { cd "$srcdir/$pkgname-$pkgver" sed -i -e 's:-Werror::' Make.rules patch -p1 < ../version.patch || return 1 + patch -p1 < ../delay-state-init.patch || return 1 + patch -p1 < ../index-delete.patch || return 1 make make DESTDIR="$pkgdir" install cd "$pkgdir/sbin" @@ -26,4 +30,6 @@ build() { } md5sums="1befa14958bebfe141bbb027937e3043 apk-tools-2.0_pre11.tar.bz2 +e6e851ce179963aef74d32b2db74215c delay-state-init.patch +3e115bf5f11729a955b15b59d3091935 index-delete.patch cfe30ff3ceea0bc908dffd01a730c1dd version.patch" |