diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-22 08:34:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-22 08:34:42 +0000 |
commit | 6553f2c48ba6457aac2e0b61c3d5542977ca5ffe (patch) | |
tree | 1fe5099d0ec1d6df583ee5c348b3d75726e72e01 | |
parent | 6450177f2f95119cb3e8332b1863d92cef0ae90a (diff) | |
download | aports-6553f2c48ba6457aac2e0b61c3d5542977ca5ffe.tar.bz2 aports-6553f2c48ba6457aac2e0b61c3d5542977ca5ffe.tar.xz |
testing/cryptsetup: upgrade to 1.1.0
-rw-r--r-- | testing/cryptsetup/APKBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/testing/cryptsetup/APKBUILD b/testing/cryptsetup/APKBUILD index 2f6fed11d..887d15d3e 100644 --- a/testing/cryptsetup/APKBUILD +++ b/testing/cryptsetup/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=cryptsetup -pkgver=1.0.7 -pkgrel=1 +pkgver=1.1.0 +pkgrel=0 pkgdesc="Userspace setup tool for transparent encryption of block devices using the Linux 2.6 cryptoapi" url="http://code.google.com/p/cryptsetup/" license="GPL" @@ -13,7 +13,8 @@ source="http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.bz2" build() { cd "$srcdir"/$pkgname-$pkgver ./configure --prefix=/usr \ - --disable-static + --disable-static \ + || return 1 make || return 1 } @@ -21,4 +22,4 @@ package() { cd "$srcdir"/$pkgname-$pkgver make DESTDIR=$pkgdir install } -md5sums="5eea2a77391a8a1a651b31cbaef59e22 cryptsetup-1.0.7.tar.bz2" +md5sums="8177f1833f4d6aaacc5812046d2010b6 cryptsetup-1.1.0.tar.bz2" |