wok-next view libtool/receipt @ rev 20181

lzma, llvm, libwrap, jpeg, gucharmap: receipt v2
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 02 13:24:48 2017 +0100 (2017-11-02)
parents 9a17d981d0f7
children c04bd033a43d
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 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="automake autoconf gfortran"
16 BUILD_DEPENDS_arm=" "
17 SPLIT="libltdl"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $CONFIGURE_ARGS && make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 case $PACKAGE in
29 libtool)
30 copy bin/ include/ aclocal/ libtool/ *.*a
31 DEPENDS="libltdl automake autoconf"
32 ;;
33 libltdl)
34 copy *.so*
35 CAT="system-tools|library"
36 DEPENDS=" "
37 ;;
38 esac
39 }