43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
# Template file for 'libtomcrypt'
|
|
pkgname=libtomcrypt
|
|
version=1.17
|
|
revision=4
|
|
patch_args="-Np1"
|
|
hostmakedepends="libtool"
|
|
short_desc="Fairly comprehensive, modular and portable cryptographic toolkit"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="Public domain"
|
|
homepage="http://www.libtom.org/?page=features&newsitems=5&whatfile=crypt"
|
|
distfiles="http://www.libtom.org/files/crypt-${version}.tar.bz2"
|
|
checksum=e33b47d77a495091c8703175a25c8228aff043140b2554c08a3c3cd71f79d116
|
|
long_desc="
|
|
LibTomCrypt is a fairly comprehensive, modular and portable cryptographic
|
|
toolkit that provides developers with a vast array of well known published
|
|
block ciphers, one-way hash functions, chaining modes, pseudo-random number
|
|
generators, public key cryptography and a plethora of other routines."
|
|
|
|
do_build() {
|
|
sed -e "s,@@CC@@,$CC,g;s,\$(CC),$CC,g" -i makefile.shared
|
|
if [ "$CROSS_BUILD" ]; then
|
|
cp /usr/bin/libtool .
|
|
sed -e "s,CCLD=.*,CCLD=$CC,g;s,CC=.*,CC=$CC,g" -i libtool
|
|
sed -e 's,libtool,./libtool,g' -i makefile.shared
|
|
fi
|
|
make RANLIB=$RANLIB -f makefile.shared ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
make -f makefile.shared NODOCS=1 DESTDIR=${DESTDIR} install
|
|
vinstall ${sourcepkg}.3 644 usr/share/man/man3
|
|
}
|
|
|
|
libtomcrypt-devel_package() {
|
|
depends="${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|