wok view libtasn1/receipt @ rev 10949

Up iron-linux (13.0.800.0) security fixes
author Paul Issott <paul@slitaz.org>
date Thu Sep 01 19:45:03 2011 +0100 (2011-09-01)
parents b8033711fc51
children 2b0e9d897733
line source
1 # SliTaz package receipt.
3 PACKAGE="libtasn1"
4 VERSION="2.9"
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=$DESTDIR 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 }