wok annotate gtk-theme-arc/receipt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (16 months ago)
parents 5ea0ce1cecc0
children 20ad21d5532c
rev   line source
al@19123 1 # SliTaz package receipt.
al@19123 2
al@19123 3 PACKAGE="gtk-theme-arc"
Hans-G?nter@22900 4 VERSION="20170302"
al@19123 5 CATEGORY="customization"
Hans-G?nter@22900 6 SHORT_DESC="A flat theme with transparent elements."
al@19123 7 MAINTAINER="al.bobylev@gmail.com"
al@19123 8 LICENSE="GPL3"
al@19123 9 WEB_SITE="https://github.com/horst3180/arc-theme"
Hans-G?nter@22900 10
al@19123 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19123 12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
al@19123 13
al@19123 14 DEPENDS="gtk2-engine-murrine"
al@19123 15 BUILD_DEPENDS="autoconf automake gtk+3-dev"
al@19123 16
pascal@25465 17 # What is the latest version available today?
pascal@24055 18 current_version()
pascal@24055 19 {
pascal@24055 20 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24055 21 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q'
pascal@24055 22 }
pascal@24055 23
al@19123 24 # Rules to configure and make the package.
al@19123 25 compile_rules()
al@19123 26 {
Hans-G?nter@22900 27 ./autogen.sh \
Hans-G?nter@22900 28 --prefix=/usr \
Hans-G?nter@22900 29 --disable-cinnamon \
Hans-G?nter@22900 30 --disable-gnome-shell \
Hans-G?nter@22900 31 --disable-unity &&
al@19123 32 make install
al@19123 33 }
al@19123 34
al@19123 35 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19123 36 genpkg_rules()
al@19123 37 {
Hans-G?nter@22900 38 cp -a $install/* $fs
al@19123 39 }