cryptsetup: install a static binary, too.

This commit is contained in:
Tilman Sauerbeck 2009-08-18 20:59:40 +02:00
parent 9414d40a19
commit 1bf8da837d
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,5 @@
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/cryptsetup.static
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/libcryptsetup.h

View File

@ -1,11 +1,11 @@
# Description: user-friendly dm-crypt/LUKS interface
# URL: http://code.google.com/p/cryptsetup/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: lvm2, libgcrypt, popt
# Depends on: libdevmapper, util-linux-ng, libgcrypt, popt
name=cryptsetup
version=1.0.7
release=1
release=2
source=(http://$name.googlecode.com/files/$name-$version.tar.bz2)
build() {
@ -17,4 +17,8 @@ build() {
--disable-nls
make
make DESTDIR=$PKG install
./configure --prefix=/usr --enable-static
make
install -D -m 755 src/cryptsetup $PKG/sbin/cryptsetup.static
}