summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/cryptsetup/PKGBUILD
blob: ff5f83f24ceb0f38b5aaf60172d4c003cda2bd1d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
pkgname=cryptsetup
pkgver=1.0.6
pkgrel=10
pkgdesc="Userspace setup tool for transparent encryption of block devices using the Linux 2.6 cryptoapi"
arch=(i686 x86_64)
license=('GPL')
url="http://luks.endorphin.org/dm-crypt"
groups=('base')
depends=('device-mapper' 'libgcrypt' 'popt' 'e2fsprogs')
options=('!libtool' '!emptydirs')
source=(http://luks.endorphin.org/source/cryptsetup-$pkgver.tar.bz2
        encrypt_hook
	encrypt_install
	luksOpen-status.patch)
md5sums=('00d452eb7a76e39f5749545d48934a10'
         '40fee2419cd444cfb283c311f9555d2d'
         '24b76e9cb938bc3c8dcff396cbab28c7'
         'd4be8d2059d5427c057be4de4e948887')

build() {
  cd $startdir/src/$pkgname-$pkgver
  # suppress "Command successful" message on luksOpen
  patch -p1 -i $startdir/src/luksOpen-status.patch
  ./configure --prefix=/usr --disable-static
  make || return 1
  make DESTDIR=$startdir/pkg install
  # include a static cryptsetup binary for initrd setups
  make clean
  cd $startdir/src/$pkgname-$pkgver
  ./configure --prefix=/usr --enable-static
  make || return 1
  # include a static cryptsetup binary for initrd setups
  install -D -m755 src/cryptsetup $startdir/pkg/sbin/cryptsetup.static || return 1
  # install hook
  install -D -m644 $startdir/src/encrypt_hook $startdir/pkg/lib/initcpio/hooks/encrypt
  install -D -m644 $startdir/src/encrypt_install $startdir/pkg/lib/initcpio/install/encrypt
}