wok view libtasn1/receipt @ rev 9561

Up: homebank to 4.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 11 13:33:54 2011 +0000 (2011-04-11)
parents 4829bb876a86
children 64f3febd8dcd
line source
1 # SliTaz package receipt.
3 PACKAGE="libtasn1"
4 VERSION="2.8"
5 CATEGORY="security"
6 SHORT_DESC="ASN.1 library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/libtasn1/"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }