wok-6.x view libtool/receipt @ rev 6192
Up: openssl, openssl-dev, libssl, libcrypto, libcrypto-dev to 1.0.0a.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Sep 10 21:40:48 2010 +0000 (2010-09-10) |
parents | 864dfe91a1df |
children | f2fc9cd065e5 |
line source
1 # SliTaz package receipt.
3 PACKAGE="libtool"
4 VERSION="2.2.6b"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Portable Library Tool."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/libtool/"
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 --infodir=/usr/share/info \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib $fs/usr
31 cp -a $_pkg/usr/include $fs/usr
32 cp -a $_pkg/usr/share/aclocal $fs/usr/share
33 cp -a $_pkg/usr/share/libtool $fs/usr/share
34 }