wok view emerald/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents
children 380ffe05937a
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.compiz.org"
10 WGET_URL="http://cgit.compiz.org/fusion/decorators/emerald/snapshot/$TARBALL"
12 DEPENDS="xorg-libX11 gtk+ libwnck compiz-core"
13 BUILD_DEPENDS="xorg-dev gtk+-dev libwnck-dev compiz-core-dev autoconf \
14 automake libtool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
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/mime* $fs/usr/share
34 cp -a $install/usr/share/pixmaps $fs/usr/share
35 # SliTaz config and theme (to move in slitaz-configs ?)
36 cp -f $stuff/settings.ini $fs/usr/share/emerald
37 cp -f $stuff/theme.ini $fs/usr/share/emerald/theme
38 }