wok view gtk3-engine-solidity/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 68d68791ced5
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk3-engine-solidity"
4 VERSION="0.4.1"
5 CATEGORY="customization"
6 SHORT_DESC="Solidity GTK+3 engine and themes"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="http://gnome-look.org/content/show.php/solidity+gtk3+engine?content=142331"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://gnome-look.org/CONTENT/content-files/142331-solidity-$VERSION.tar.bz2"
12 TAGS="gtk3"
14 DEPENDS="gtk+3"
15 BUILD_DEPENDS="vala glib-dev gtk+3-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/source/gtk3
21 valac --pkg=gmodule-2.0 --pkg=gtk+-3.0 -C solidity.vala
22 gcc -shared -fPIC \
23 $(pkg-config --cflags --libs glib-2.0 gmodule-2.0 gtk+-3.0) \
24 -o libsolidity.so solidity.c
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p \
31 $fs/usr/lib/gtk-3.0/3.0.0/theming-engines \
32 $fs/usr/share
33 cp -a $src/source/gtk3/libsolidity.so \
34 $fs/usr/lib/gtk-3.0/3.0.0/theming-engines
35 cp -a $src/themes $fs/usr/share
36 find $fs -name 'gtk-2.0' -delete
37 }