wok annotate gtk2-engine-murrine/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 40fab26c175d
children 6831608a1b2a
rev   line source
al@14269 1 # SliTaz package receipt.
al@14269 2
al@14269 3 PACKAGE="gtk2-engine-murrine"
al@14269 4 VERSION="0.98.2"
al@19126 5 CATEGORY="customization"
al@14269 6 SHORT_DESC="GTK2 engine to make your desktop look like a murrina"
al@14269 7 MAINTAINER="jozee@slitaz.org"
pascal@14997 8 LICENSE="LGPL3"
al@19112 9 #WEB_SITE="http://www.cimitan.com/murrine"
pascal@20669 10 WEB_SITE="https://ubuntuforums.org/showthread.php?t=239378"
al@14269 11 TARBALL="murrine-$VERSION.tar.xz"
pascal@17869 12 WGET_URL="$GNOME_MIRROR/murrine/${VERSION%.*}/$TARBALL"
al@14269 13 TAGS="gtk2"
al@14269 14
al@14269 15 DEPENDS="gtk+"
al@14269 16 BUILD_DEPENDS="gtk+-dev libxml2-dev"
al@14269 17
al@14269 18 # Rules to configure and make the package.
al@14269 19 compile_rules()
al@14269 20 {
al@14269 21 ./configure \
al@14269 22 --disable-static \
al@14269 23 --enable-animation \
al@14269 24 $CONFIGURE_ARGS &&
al@14269 25 make &&
al@14269 26 make install
al@14269 27 }
al@14269 28
al@14269 29 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14269 30 genpkg_rules()
al@14269 31 {
al@14269 32 mkdir -p $fs/usr
al@14269 33 cp -a $install/usr/lib $fs/usr
al@14269 34 cp -a $install/usr/share $fs/usr
al@14269 35 find $fs -name '*.la' -delete
al@14269 36 }