wok view perl-glib/receipt @ rev 18854

Link octave to gnuplot
author Lucas Levrel <llevrel@yahoo.fr>
date Mon Jan 25 22:26:55 2016 +0100 (2016-01-25)
parents 01b0687cb2a7
children 20661c276bcf
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-glib"
4 SOURCE="Glib"
5 VERSION="1.301"
6 CATEGORY="development"
7 SHORT_DESC="Perl wrappers for the GLib utility and Object libraries."
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="LGPL2.1"
10 DEPENDS="perl glib"
11 BUILD_DEPENDS="perl perl-extutils-depends perl-extutils-pkgconfig glib-dev"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://search.cpan.org/~xaoc/Glib-1.301/"
14 WGET_URL="http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 perl Makefile.PL &&
21 make &&
22 make install DESTDIR=$DESTDIR
23 rm -rf $pkgdir/installnone
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 }