mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-13 12:41:50 +01:00
25 lines
694 B
Plaintext
25 lines
694 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=cryptsetup
|
|
pkgver=1.0.7
|
|
pkgrel=1
|
|
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"
|