wok annotate pygobject/receipt @ rev 9816
bird: fix BUILD_DEPENDS
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun May 15 01:21:58 2011 +0200 (2011-05-15) |
parents | a1a90bd36fc1 |
children | 3acde357cf8c |
rev | line source |
---|---|
erjo@1175 | 1 # SliTaz package receipt. |
erjo@1175 | 2 |
erjo@1175 | 3 PACKAGE="pygobject" |
slaxemulator@9490 | 4 VERSION="2.28.3" |
erjo@1175 | 5 CATEGORY="development" |
erjo@1175 | 6 SHORT_DESC="Python bindings for the GObject library" |
erjo@1175 | 7 MAINTAINER="erjo@slitaz.org" |
slaxemulator@6783 | 8 DEPENDS="python pycairo glib libffi libgio gobject-introspection" |
slaxemulator@6783 | 9 BUILD_DEPENDS="python python-dev pkg-config glib-dev libgio-dev pycairo-dev cairo-dev libffi-dev gobject-introspection-dev" |
erjo@1175 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@1413 | 11 WEB_SITE="http://www.pygtk.org/docs/pygobject/index.html" |
slaxemulator@9490 | 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" |
erjo@1175 | 13 |
erjo@1175 | 14 # Rules to configure and make the package. |
erjo@1175 | 15 compile_rules() |
erjo@1175 | 16 { |
erjo@1175 | 17 cd $src |
slaxemulator@9490 | 18 ./configure && make && make install |
erjo@1175 | 19 } |
erjo@1175 | 20 |
erjo@1175 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1175 | 22 genpkg_rules() |
erjo@1175 | 23 { |
pascal@6594 | 24 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/') |
erjo@1175 | 25 mkdir -p $fs/usr/lib |
pascal@6592 | 26 cp -a $_pkg/usr/lib/$PYTHON_LIB $fs/usr/lib |
erjo@4695 | 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
erjo@1175 | 28 } |
erjo@1175 | 29 |