wok annotate libglademm/receipt @ rev 14714

lib[a-n]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 10:41:23 2013 +0200 (2013-06-11)
parents 8e4c74abdf74
children 140ee6de0635
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"
pascal@14714 8 LICENSE="LGPL2.1"
slaxemulator@7102 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
gokhlayeh@7030 10 WEB_SITE="http://gtkmm.sourceforge.net/"
slaxemulator@7102 11 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
gokhlayeh@7030 12
pascal@14714 13 DEPENDS="gtkmm libglade glibmm"
pascal@14714 14 BUILD_DEPENDS="gtkmm-dev libglade-dev cairomm-dev libxml2-dev glibmm-dev"
pascal@14714 15
gokhlayeh@7030 16 # Rules to configure and make the package.
gokhlayeh@7030 17 compile_rules()
gokhlayeh@7030 18 {
gokhlayeh@7030 19 cd $src
gokhlayeh@7030 20 ./configure \
gokhlayeh@7030 21 --prefix=/usr \
gokhlayeh@7030 22 --infodir=/usr/share/info \
gokhlayeh@7030 23 --mandir=/usr/share/man \
gokhlayeh@7030 24 $CONFIGURE_ARGS &&
pascal@14714 25 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
gokhlayeh@7030 26 }
gokhlayeh@7030 27
gokhlayeh@7030 28 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@7030 29 genpkg_rules()
gokhlayeh@7030 30 {
gokhlayeh@7030 31 mkdir -p $fs/usr/lib
pascal@14714 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
gokhlayeh@7030 33 }
gokhlayeh@7030 34