wok-next view emerald/receipt @ rev 17573
Up: icu 54.1
| author | Alexander Medvedev <devl547@gmail.com> | 
|---|---|
| date | Sat Feb 07 21:10:31 2015 +0000 (2015-02-07) | 
| parents | 380ffe05937a | 
| children | 8e1f5fe117e6 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="emerald"
     4 VERSION="0.9.4"
     5 CATEGORY="x-window"
     6 SHORT_DESC="Window decorator for Compiz."
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="GPL2"
     9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    10 WEB_SITE="http://www.compiz.org"
    11 WGET_URL="http://cgit.compiz.org/fusion/decorators/emerald/snapshot/$TARBALL"
    13 DEPENDS="xorg-libX11 gtk+ libwnck compiz-core"
    14 BUILD_DEPENDS="xorg-dev gtk+-dev libwnck-dev compiz-core-dev autoconf \
    15 automake libtool"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20 	./autogen.sh --prefix=/usr $CONFIGURE_ARGS &&
    21 	make && make install
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27 	mkdir -p $fs/usr/lib $fs/usr/share
    28 	cp -a $install/usr/bin $fs/usr
    29 	cp -a $install/usr/lib/$PACKAGE $fs/usr/lib
    30 	cp -a $install/usr/lib/libemeraldengine.so* $fs/usr/lib
    31 	rm -f $fs/usr/lib/$PACKAGE/*/*.*a
    32 	cp -a $install/usr/share/$PACKAGE $fs/usr/share
    33 	cp -a $install/usr/share/pixmaps $fs/usr/share
    34 	# SliTaz config and theme (to move in slitaz-configs ?)
    35 	cp -f $stuff/settings.ini $fs/usr/share/emerald
    36 	cp -f $stuff/theme.ini $fs/usr/share/emerald/theme
    37 }