wok-next view libtool/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 228b9c951d97
children 0f2575775b2d
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="devel@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="automake autoconf gfortran"
16 SPLIT="libltdl $PACKAGE"
18 compile_rules() {
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libltdl)
28 copy *.so*
29 CAT="system-tools|library"
30 DEPENDS="glibc-base"
31 ;;
32 libtool)
33 copy @std @dev @rm
34 DEPENDS="libltdl automake autoconf"
35 TAGS="LFS"
36 ;;
37 esac
38 }