2006-11-06 11:17:48 -04:00
|
|
|
# Description: Multiplatform disk encryption software
|
|
|
|
# URL: http://www.truecrypt.org
|
|
|
|
# Packager: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
|
|
# Depends on: libdevmapper
|
|
|
|
|
|
|
|
name=truecrypt
|
2007-06-27 01:00:14 -04:00
|
|
|
version=4.3a
|
2009-04-05 21:14:27 +09:00
|
|
|
release=2
|
|
|
|
source=(http://www.mizrahi.com.ve/crux/dist/$name-$version.tar.bz2 truecrypt-4.3a-2.6.23.patch truecrypt-4.3a-2.6.24.patch truecrypt-4.3a-2.6.29.patch)
|
2006-11-06 11:17:48 -04:00
|
|
|
|
|
|
|
build () {
|
2008-03-25 10:56:03 -04:30
|
|
|
cd $name-$version/Linux
|
|
|
|
patch -p2 -i $SRC/truecrypt-4.3a-2.6.23.patch
|
|
|
|
patch -p2 -i $SRC/truecrypt-4.3a-2.6.24.patch
|
2009-04-05 21:14:27 +09:00
|
|
|
patch -p2 -i $SRC/truecrypt-4.3a-2.6.29.patch
|
|
|
|
|
2006-11-06 11:17:48 -04:00
|
|
|
./build.sh
|
|
|
|
install -m 755 -D Cli/truecrypt $PKG/usr/bin/truecrypt
|
|
|
|
install -m 644 -D Cli/Man/truecrypt.1 $PKG/usr/man/man1/truecrypt.1
|
|
|
|
install -m 644 -D Kernel/truecrypt.ko $PKG/lib/modules/$(uname -r)/extra/truecrypt.ko
|
|
|
|
|
|
|
|
}
|