wok annotate libglademm/receipt @ rev 10891

grub4dos: add slitaz in default menu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 11:03:44 2011 +0200 (2011-07-06)
parents 28c40f5c21f5
children 8e4c74abdf74
rev   line source
gokhlayeh@7030 1 # SliTaz package receipt.
gokhlayeh@7030 2
gokhlayeh@7030 3 PACKAGE="libglademm"
gokhlayeh@7030 4 VERSION="2.6.7"
gokhlayeh@7030 5 CATEGORY="system-tools"
gokhlayeh@7030 6 SHORT_DESC="A C++ wrapper for libglade."
gokhlayeh@7030 7 MAINTAINER="gokhlayeh@slitaz.org"
gokhlayeh@7030 8 DEPENDS="gtkmm libglade glibmm"
gokhlayeh@7030 9 BUILD_DEPENDS="gtkmm-dev libglade-dev cairomm-dev libxml2-dev glibmm-dev"
slaxemulator@7102 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
gokhlayeh@7030 11 WEB_SITE="http://gtkmm.sourceforge.net/"
slaxemulator@7102 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
gokhlayeh@7030 13
gokhlayeh@7030 14 # Rules to configure and make the package.
gokhlayeh@7030 15 compile_rules()
gokhlayeh@7030 16 {
gokhlayeh@7030 17 cd $src
gokhlayeh@7030 18 ./configure \
gokhlayeh@7030 19 --prefix=/usr \
gokhlayeh@7030 20 --infodir=/usr/share/info \
gokhlayeh@7030 21 --mandir=/usr/share/man \
gokhlayeh@7030 22 $CONFIGURE_ARGS &&
gokhlayeh@7030 23 make -j 4 && make DESTDIR=$PWD/_pkg install
gokhlayeh@7030 24 }
gokhlayeh@7030 25
gokhlayeh@7030 26 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@7030 27 genpkg_rules()
gokhlayeh@7030 28 {
gokhlayeh@7030 29 mkdir -p $fs/usr/lib
gokhlayeh@7030 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
gokhlayeh@7030 31 }
gokhlayeh@7030 32