wok-current view pangomm/receipt @ rev 4212
orage: fix FSH
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Thu Sep 24 10:15:36 2009 +0200 (2009-09-24) | 
| parents | e97c81ccdba0 | 
| children | f3327707164a | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="pangomm"
     4 VERSION="2.24.0"
     5 CATEGORY="x-window"
     6 SHORT_DESC="Pango binding for GTKmm."
     7 MAINTAINER="pankso@slitaz.org"
     8 DEPENDS="pixman cairomm glibmm libgiomm pango"
     9 BUILD_DEPENDS="pixman-dev cairomm-dev glibmm-dev libgiomm-dev"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WEB_SITE="http://ftp.gnome.org/pub/gnome/sources/pangomm/"
    12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/pangomm/2.24/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17     cd $src
    18     ./configure \
    19     	--prefix=/usr \
    20     	--mandir=/usr/share/man \
    21     	$CONFIGURE_ARGS &&
    22     make &&
    23     make DESTDIR=$PWD/_pkg install
    24 }
    26 # Rules to gen a SliTaz package suitable for Tazpkg.
    27 genpkg_rules()
    28 {
    29 	mkdir -p $fs/usr/lib
    30 	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    31 }