wok annotate libglademm/receipt @ rev 22139

updated wordwarvi (1.00 -> 1.0.2)
author Hans-G?nter Theisgen
date Tue Nov 05 14:34:42 2019 +0100 (2019-11-05)
parents 140ee6de0635
children 6831608a1b2a
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"
pascal@20674 10 WEB_SITE="https://www.gtkmm.org/en/"
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
pascal@14739 20 sed -i 's|gtkmm/main|gtkmm|' examples/variablesmap/main.cc
gokhlayeh@7030 21 ./configure \
gokhlayeh@7030 22 --prefix=/usr \
gokhlayeh@7030 23 --infodir=/usr/share/info \
gokhlayeh@7030 24 --mandir=/usr/share/man \
gokhlayeh@7030 25 $CONFIGURE_ARGS &&
pascal@14714 26 make $MAKEFLAGS && make DESTDIR=$DESTDIR install
gokhlayeh@7030 27 }
gokhlayeh@7030 28
gokhlayeh@7030 29 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@7030 30 genpkg_rules()
gokhlayeh@7030 31 {
gokhlayeh@7030 32 mkdir -p $fs/usr/lib
pascal@14714 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
gokhlayeh@7030 34 }
gokhlayeh@7030 35