summaryrefslogtreecommitdiffstats
path: root/testing/cryptsetup/APKBUILD
blob: 4d7d4c983b5902143ea2db2bea7a6ac3383f02db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=cryptsetup
pkgver=1.0.7
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"
depends=
makedepends="lvm2-dev libgcrypt-dev popt-dev util-linux-ng-dev"
subpackages="$pkgname-dev $pkgname-doc"
source="http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.bz2"

build() {
	cd "$srcdir"/$pkgname-$pkgver
	./configure --prefix=/usr \
		--disable-static
	make || return 1
}

package() {
	cd "$srcdir"/$pkgname-$pkgver
	make DESTDIR=$pkgdir install
}
md5sums="5eea2a77391a8a1a651b31cbaef59e22  cryptsetup-1.0.7.tar.bz2"