wok view pangomm/receipt @ rev 6952
Fixed a bug in gobject-introspection. Looks like /usr/lib/girepository-1.0 is needed gobject-introspection instead of the -dev package.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Oct 25 22:01:57 2010 +0000 (2010-10-25) |
parents | e749b4c950c1 |
children | f4afc6def4c7 |
line source
1 # SliTaz package receipt.
3 PACKAGE="pangomm"
4 VERSION="2.26.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Pango binding for GTKmm."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="pixman cairomm glibmm libgiomm pango gcc-lib-base"
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/${VERSION%.*}/$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 --disable-documentation \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }