wok annotate paper-icon-theme/receipt @ rev 19109

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