wok view libtool/receipt @ rev 8343

Up: gnuchess to 5.08.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Feb 02 01:21:46 2011 +0000 (2011-02-02)
parents 73cc1c0a2e6e
children ac1a2a3338dd
line source
1 # SliTaz package receipt.
3 PACKAGE="libtool"
4 VERSION="2.4"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Portable Library Tool."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="automake autoconf"
9 BUILD_DEPENDS="automake autoconf"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnu.org/software/libtool/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure && make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share
25 cp -a $_pkg/usr/bin $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 cp -a $_pkg/usr/include $fs/usr
28 cp -a $_pkg/usr/share/aclocal $fs/usr/share
29 cp -a $_pkg/usr/share/libtool $fs/usr/share
30 }