wok-next view libtool/receipt @ rev 20436

Update packages listed in the LFS book.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 21 19:48:17 2018 +0200 (2018-02-21)
parents c04bd033a43d
children 5841522533ec
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libtool"
4 VERSION="2.4.6"
5 CATEGORY="development"
6 SHORT_DESC="The GNU Portable Library Tool"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/libtool/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/libtool.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS_arm=" "
16 BUILD_DEPENDS="automake autoconf gfortran"
17 SPLIT="libltdl libtool"
19 compile_rules() {
20 ./configure $CONFIGURE_ARGS && make && make install
21 }
23 genpkg_rules() {
24 case $PACKAGE in
25 libltdl)
26 copy *.so*
27 CAT="system-tools|library"
28 DEPENDS="glibc-base"
29 ;;
30 libtool)
31 copy @std @dev @rm
32 DEPENDS="libltdl automake autoconf"
33 TAGS="LFS"
34 ;;
35 esac
36 }