wok-next view gtk-engine-nodoka/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents d1c17bd2c2bc
children d43bf7aae921
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-engine-nodoka"
4 VERSION="0.7.5"
5 SOURCE="gtk-nodoka-engine"
6 CATEGORY="customization"
7 SHORT_DESC="Light and modern GTK theme engine."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://fedorahosted.org/nodoka/"
12 WGET_URL="https://fedorahosted.org/released/nodoka/$TARBALL"
14 DEPENDS="gtk+"
15 BUILD_DEPENDS="gtk+-dev wget"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib/gtk-2.0/2.10.0/engines
29 cp $install/usr/lib/gtk-2.0/2.10.0/engines/*.so \
30 $fs/usr/lib/gtk-2.0/2.10.0/engines
31 cp -a $install/usr/share $fs/usr
32 }