wok view libtasn1/receipt @ rev 15495

Up: firefox-langpack-it (17.0.10esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 17 16:29:59 2013 +0100 (2013-11-17)
parents 2b0e9d897733
children 6739a11f9858
line source
1 # SliTaz package receipt.
3 PACKAGE="libtasn1"
4 VERSION="2.10"
5 CATEGORY="security"
6 SHORT_DESC="ASN.1 library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3 LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/libtasn1/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }