wok-next view libtool/receipt @ rev 20406

Continue: json-c, json-glib, keyutils, libarchive, libassuan, libatasmart, libatomic_ops, libblockdev, libbytesize, libcroco, libdaemon, libesmtp, libffi, libgcrypt, libgpg-error, libgsf, libgudev, libgusb
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 08 02:55:48 2017 +0200 (2017-12-08)
parents 2f19239eaed4
children 90a5eb560fd6
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="glibc-base"
37 ;;
38 esac
39 }