wok annotate glibmm/receipt @ rev 24085

tuxpaint: do not run kbuildsycoca4 without kde
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jul 10 14:52:46 2021 +0000 (2021-07-10)
parents a78610b2eb47
children 370da83187ab
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"
pascal@20669 10 WEB_SITE="https://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
pascal@24051 16 current_version()
pascal@24051 17 {
pascal@24051 18 wget -O - $(dirname $WGET_URL) 2>/dev/null | sed '/LATEST/!d;s|.*IS-||;s|<.*||'
pascal@24051 19 }
pascal@24051 20
pankso@137 21 # Rules to configure and make the package.
pankso@137 22 compile_rules()
pankso@137 23 {
pascal@12673 24 find . -name '*.[ch]*' | xargs sed -i 's|<glib/.*h|<glib.h|'
slaxemulator@10088 25 ./configure $CONFIGURE_ARGS &&
slaxemulator@10088 26 make && make install
pankso@137 27 }
pankso@137 28
pankso@137 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@137 30 genpkg_rules()
pankso@137 31 {
pankso@137 32 mkdir -p $fs/usr/lib
pascal@14996 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@842 34 # Remove libgiomm
pankso@842 35 rm -rf $fs/usr/lib/libgiomm*
pankso@137 36 }