wok-stable annotate murrine/receipt @ rev 10891
grub4dos: add slitaz in default menu
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 06 11:03:44 2011 +0200 (2011-07-06) |
parents | 67f9628aad2d |
children | b7319995b37e |
rev | line source |
---|---|
jozee@2842 | 1 # SliTaz package receipt. |
jozee@2842 | 2 |
jozee@2842 | 3 PACKAGE="murrine" |
slaxemulator@8113 | 4 VERSION="0.98.1.1" |
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+" |
slaxemulator@8113 | 9 BUILD_DEPENDS="autoconf automake intltool libtool m4 gettext libgomp pixman-dev expat-dev libgio-dev gtk+-dev glibc-locale" |
slaxemulator@8113 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
jozee@2842 | 11 WEB_SITE="http://www.cimitan.com/murrine" |
slaxemulator@8113 | 12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/murrine/0.98/$TARBALL" |
jozee@2842 | 13 |
jozee@2842 | 14 # Rules to configure and make the package. |
jozee@2842 | 15 compile_rules() |
jozee@2842 | 16 { |
jozee@2842 | 17 cd $src |
slaxemulator@8113 | 18 #sed -i 's/1.10/1.11/g' autogen.sh |
slaxemulator@8113 | 19 ./configure --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 |