wok view libIDL/receipt @ rev 2478

libfox*, libetpan, libcurl, libbind, lib?DL: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 15 20:31:26 2009 +0000 (2009-03-15)
parents 52dc4b48ed81
children b3f3b270b95f
line source
1 # SliTaz package receipt.
3 PACKAGE="libIDL"
4 VERSION="0.8.9"
5 CATEGORY="development"
6 SHORT_DESC="IDL Compiling Library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="glib"
10 BUILD_DEPENDS="flex glib glib-dev"
11 WEB_SITE="http://andrewtv.org/libIDL/"
12 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/include $fs/usr
31 strip --strip-unneeded $fs/usr/lib/*.so*
32 }