wok-next view mcrypt/receipt @ rev 16012
syslinux/iso2exe: access both local and isofs namespaces
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Tue Mar 04 21:00:29 2014 +0000 (2014-03-04) | 
| parents | 6a0bb22dcc73 | 
| children | d5f9530836a4 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="mcrypt"
     4 VERSION="2.6.8"
     5 CATEGORY="security"
     6 SHORT_DESC="Encryption"
     7 MAINTAINER="erjo@slitaz.org"
     8 LICENSE="GPL3"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 WEB_SITE="http://mcrypt.sourceforge.net/"
    11 WGET_URL="http://downloads.sourceforge.net/project/mcrypt/MCrypt/$VERSION/$TARBALL"
    13 DEPENDS="zlib mhash libmcrypt"
    14 BUILD_DEPENDS="libmcrypt-dev libmcrypt-dev mhash-dev"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	cd $src
    20 	./configure \
    21 		--prefix=/usr $CONFIGURE_ARGS 2>&1 | grep -v libtoolT &&
    22 	make &&
    23 	make DESTDIR=$DESTDIR install
    24 }
    26 # Rules to gen a SliTaz package suitable for Tazpkg.
    27 genpkg_rules()
    28 {
    29 	mkdir -p $fs/usr
    30 	cp -a $install/usr/bin $fs/usr
    31 }