wok annotate mate-themes/receipt @ rev 24253
updated perl-template-toolkit (3.008 -> 3.010)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 09:54:37 2022 +0100 (2022-01-02) |
parents | 40fab26c175d |
children | 73f36875e5a7 |
rev | line source |
---|---|
yuripourre@18500 | 1 # SliTaz package receipt. |
yuripourre@18500 | 2 |
yuripourre@18500 | 3 PACKAGE="mate-themes" |
yuripourre@18500 | 4 VERSION="1.9.0" |
al@19126 | 5 CATEGORY="customization" |
yuripourre@18500 | 6 LICENSE="GPL" |
yuripourre@18500 | 7 SHORT_DESC="MATE's default themes." |
yuripourre@18500 | 8 MAINTAINER="yuripourre@gmail.com" |
yuripourre@18500 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
yuripourre@18500 | 10 WEB_SITE="http://www.mate-desktop.org/" |
yuripourre@18500 | 11 WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL" |
yuripourre@18500 | 12 |
yuripourre@18500 | 13 DEPENDS="gtk+ gtk-engines gtk2-engine-murrine librsvg mate-icon-theme" |
yuripourre@18500 | 14 BUILD_DEPENDS="autoconf automake gtk+-dev mate-common-dev icon-naming-utils" |
yuripourre@18500 | 15 |
pascal@24055 | 16 current_version() |
pascal@24055 | 17 { |
pascal@24055 | 18 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ |
pascal@24055 | 19 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' |
pascal@24055 | 20 } |
pascal@24055 | 21 |
yuripourre@18500 | 22 # Rules to configure and make the package. |
yuripourre@18500 | 23 compile_rules() |
yuripourre@18500 | 24 { |
yuripourre@18500 | 25 ./autogen.sh \ |
yuripourre@18500 | 26 --prefix=/usr \ |
yuripourre@18500 | 27 --enable-all-themes \ |
yuripourre@18500 | 28 --disable-placeholders \ |
yuripourre@18500 | 29 $CONFIGURE_ARGS && |
yuripourre@18500 | 30 make && |
yuripourre@18500 | 31 make DESTDIR=$DESTDIR install |
yuripourre@18500 | 32 } |
yuripourre@18500 | 33 |
yuripourre@18500 | 34 genpkg_rules() |
yuripourre@18500 | 35 { |
yuripourre@18500 | 36 mkdir -p $fs/usr |
yuripourre@18500 | 37 cp -a $install/usr $fs |
yuripourre@18500 | 38 } |