wok annotate murrine/receipt @ rev 2842

Add: murrine GTK engine
author Rohit Joshi <jozee@slitaz.org>
date Thu Apr 30 17:17:01 2009 +0000 (2009-04-30)
parents
children 2c679ce49f4c
rev   line source
jozee@2842 1 # SliTaz package receipt.
jozee@2842 2
jozee@2842 3 PACKAGE="murrine"
jozee@2842 4 VERSION="200904svn"
jozee@2842 5 CATEGORY="x-window"
jozee@2842 6 SHORT_DESC="GTK2 engine to make your desktop look like a murrina"
jozee@2842 7 MAINTAINER="jozee@slitaz.org"
jozee@2842 8 DEPENDS="pixman expat libgio gtk+"
jozee@2842 9 BUILD_DEPENDS="autoconf automake intltool libtool m4 gettext libgomp pixman-dev expat-dev libgio-dev gtk+-dev subversion libiconv"
jozee@2842 10 WEB_SITE="http://www.cimitan.com/murrine"
jozee@2842 11 SVN_TRUNK="http://svn.gnome.org/svn/murrine/trunk/"
jozee@2842 12
jozee@2842 13
jozee@2842 14 # Rules to configure and make the package.
jozee@2842 15 compile_rules()
jozee@2842 16 {
jozee@2842 17 svn checkout $SVN_TRUNK $PACKAGE-$VERSION
jozee@2842 18 cd $src
jozee@2842 19 ./autogen.sh --prefix=/usr --enable-animation
jozee@2842 20 make
jozee@2842 21 make DESTDIR=$PWD/_pkg install
jozee@2842 22 }
jozee@2842 23
jozee@2842 24 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2842 25 genpkg_rules()
jozee@2842 26 {
jozee@2842 27 mkdir -p $fs/usr/share $fs/usr/lib
jozee@2842 28 cp -a $_pkg/usr/share $fs/usr
jozee@2842 29 cp -a $_pkg/usr/lib $fs/usr
jozee@2842 30
jozee@2842 31 }
jozee@2842 32