wok view paper-icon-theme/receipt @ rev 19315

Check manpages... to ddd.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jul 12 15:00:21 2016 +0300 (2016-07-12)
parents e9d12b123dd1
children 3498b49b1fc9
line source
1 # SliTaz package receipt.
3 PACKAGE="paper-icon-theme"
4 VERSION="1.1"
5 COMMIT="7cb5e66"
6 CATEGORY="customization"
7 SHORT_DESC="Simple and modern icon theme with material design influences"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="LGPL3 CC-ASA"
10 WEB_SITE="https://snwh.org/paper/"
11 TARBALL="$PACKAGE-$COMMIT.tar.gz"
12 WGET_URL="https://github.com/snwh/paper-icon-theme/archive/$COMMIT.tar.gz"
14 DEPENDS=""
15 BUILD_DEPENDS="autoconf automake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 make && make install
23 # make the background transparent (fix future export to png problems)
24 for svg in $(find $install -type f -name '*.svg'); do
25 sed -i "s|pageopacity='1'|pageopacity='0'|" $svg
26 done
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/* $fs
33 }