wok-next diff emerald-themes/receipt @ rev 21257

encfs: use cmake
author Hans-G?nter Theisgen
date Fri Dec 06 13:47:57 2019 +0100 (2019-12-06)
parents d5aab818505e
children
line diff
     1.1 --- a/emerald-themes/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.2 +++ b/emerald-themes/receipt	Fri Dec 06 13:47:57 2019 +0100
     1.3 @@ -1,27 +1,34 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="emerald-themes"
     1.8 -VERSION="0.8.12.1"
     1.9 +VERSION="0.8.14"
    1.10  CATEGORY="customization"
    1.11  SHORT_DESC="Themes for Emerald"
    1.12  MAINTAINER="psychomaniak@xakep.ru"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="https://github.com/compiz-reloaded"
    1.15 +WEB_SITE="https://gitlab.com/compiz/emerald-themes"
    1.16 +HOST_ARCH="any"
    1.17  
    1.18 -TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.19 -WGET_URL="$WEB_SITE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
    1.20 +TARBALL="emerald-themes-v0.8.14.tar.bz2"
    1.21 +WGET_URL="https://gitlab.com/compiz/emerald-themes/-/archive/v$VERSION/$TARBALL"
    1.22  
    1.23 -BUILD_DEPENDS="xorg-dev gtk2-dev autoconf automake libtool"
    1.24 +BUILD_DEPENDS="automake"
    1.25 +
    1.26 +DEPENDS_std="emerald"
    1.27 +
    1.28 +TAGS="compiz"
    1.29  
    1.30  compile_rules() {
    1.31 -	./configure \
    1.32 -		--prefix=/usr \
    1.33 +	./autogen.sh \
    1.34  		$CONFIGURE_ARGS &&
    1.35  	make &&
    1.36 -	make install
    1.37 +	make install || return 1
    1.38 +
    1.39 +	chmod 755 \
    1.40 +		$install/usr/share/emerald/themes/Mavericks/dark/ \
    1.41 +		$install/usr/share/emerald/themes/Mu/dark/ # 644 -> 755
    1.42  }
    1.43  
    1.44  genpkg_rules() {
    1.45 -	mv $install/* $fs
    1.46 -	DEPENDS="xorg-libX11 emerald"
    1.47 +	copy @std; DEPENDS="$DEPENDS_std"
    1.48  }