wok view libIDL/receipt @ rev 2831

get-texlive: fix typo
author Pierre-Jean Fichet <sygne@ombres.eu>
date Thu Apr 30 10:17:12 2009 +0000 (2009-04-30)
parents 2ddc861c6696
children fa02635c6d16
line source
1 # SliTaz package receipt.
3 PACKAGE="libIDL"
4 VERSION="0.8.13"
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 }