wok annotate glibmm/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents 10803e6295e4
children a78610b2eb47
rev   line source
pankso@137 1 # SliTaz package receipt.
pankso@137 2
pankso@137 3 PACKAGE="glibmm"
yuripourre@16918 4 VERSION="2.40.0"
pankso@209 5 CATEGORY="x-window"
pankso@137 6 SHORT_DESC="C++ interface for the popular GUI library GTK+."
pankso@137 7 MAINTAINER="pankso@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
yuripourre@16919 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@137 10 WEB_SITE="http://www.gtkmm.org/"
yuripourre@16918 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
pankso@137 12
al@16770 13 DEPENDS="glib libsigc++ gcc-lib-base glibc-base libffi pcre"
pankso@9711 14 BUILD_DEPENDS="glib-dev libsigc++-dev"
pankso@9711 15
pankso@137 16 # Rules to configure and make the package.
pankso@137 17 compile_rules()
pankso@137 18 {
pascal@12673 19 find . -name '*.[ch]*' | xargs sed -i 's|<glib/.*h|<glib.h|'
slaxemulator@10088 20 ./configure $CONFIGURE_ARGS &&
slaxemulator@10088 21 make && make install
pankso@137 22 }
pankso@137 23
pankso@137 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@137 25 genpkg_rules()
pankso@137 26 {
pankso@137 27 mkdir -p $fs/usr/lib
pascal@14996 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@842 29 # Remove libgiomm
pankso@842 30 rm -rf $fs/usr/lib/libgiomm*
pankso@137 31 }