wok view emerald/receipt @ rev 18077

Rebuild Python packages to remove "*.pyc" files from package.lists (part 1).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 22 17:34:18 2015 +0300 (2015-05-22)
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 }