wok annotate gtk-xfce-engine/receipt @ rev 22919

gtk+3: Try to cheat configure
author Hans-G?nter Theisgen
date Mon Feb 24 15:54:38 2020 +0100 (2020-02-24)
parents 28a555da681c
children 17091bc7c301
rev   line source
erjo@4138 1 # SliTaz package receipt.
erjo@4138 2
erjo@4138 3 PACKAGE="gtk-xfce-engine"
Hans-G?nter@22903 4 VERSION="3.2.0"
al@19126 5 CATEGORY="customization"
Hans-G?nter@22903 6 SHORT_DESC="GTK engine for Xfce."
erjo@4138 7 MAINTAINER="erjo@slitaz.org"
pascal@15589 8 LICENSE="GPL2"
Hans-G?nter@22903 9 WEB_SITE="https://www.xfce.org/"
Hans-G?nter@22903 10
erjo@4138 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
Hans-G?nter@22904 12 WGET_URL="https://archive.xfce.org/src/archive/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@4138 13
pascal@15589 14 DEPENDS="gtk+"
pascal@15589 15 BUILD_DEPENDS="gtk+-dev libffi"
pascal@15589 16
erjo@4138 17 # Rules to configure and make the package.
erjo@4138 18 compile_rules()
erjo@4138 19 {
Hans-G?nter@22903 20 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@22903 21 make &&
Hans-G?nter@22903 22 make install
erjo@4138 23 }
erjo@4138 24
erjo@4138 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4138 26 genpkg_rules()
erjo@4138 27 {
erjo@4138 28 mkdir -p $fs/usr
al@19126 29
Hans-G?nter@22903 30 cp -a $install/usr/lib $fs/usr
Hans-G?nter@22903 31 cp -a $install/usr/share $fs/usr
al@19126 32
erjo@4138 33 find $fs/usr/lib -name "*.la" -exec rm -f {} \;
erjo@4138 34 }