wok annotate libglademm/receipt @ rev 11812

Up: libpng (1.5.9) - Security fix
author Christophe Lincoln <pankso@slitaz.org>
date Sat Feb 25 17:30:58 2012 +0100 (2012-02-25)
parents 99dddc18b9a5
children 4904e3d374a9
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@11574 23 make $MAKEFLAGS && 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