wok view libIDL/receipt @ rev 1069

mplayer: add dep xorg-libXv (full screen support)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jul 15 22:37:28 2008 +0200 (2008-07-15)
parents ebc6b242794b
children 04d6abcf6d15
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 WEB_SITE="http://andrewtv.org/libIDL/"
10 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/include $fs/usr
29 strip --strip-unneeded $fs/usr/lib/*.so*
30 }