wok-6.x annotate murrine/receipt @ rev 15226
goffice: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Sep 22 18:06:29 2013 +0200 (2013-09-22) |
parents | e81fea0d0e52 |
children | d3eb5f4b53ea |
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" |
pascal@14997 | 8 LICENSE="LGPL3" |
slaxemulator@8113 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
gokhlayeh@11573 | 10 WEB_SITE="http://www.cimitan.com/murrine" |
slaxemulator@8113 | 11 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/murrine/0.98/$TARBALL" |
jozee@2842 | 12 |
pascal@14997 | 13 DEPENDS="pixman expat libgio gtk+" |
pascal@14997 | 14 BUILD_DEPENDS="autoconf automake intltool libtool m4 gettext libgomp pixman-dev expat-dev libgio-dev gtk+-dev glibc-locale" |
pascal@14997 | 15 |
jozee@2842 | 16 # Rules to configure and make the package. |
jozee@2842 | 17 compile_rules() |
jozee@2842 | 18 { |
jozee@2842 | 19 cd $src |
pascal@12674 | 20 find . -name '*.[ch]*' | xargs sed -i 's|<glib/.*h|<glib.h|' |
slaxemulator@8113 | 21 #sed -i 's/1.10/1.11/g' autogen.sh |
gokhlayeh@11573 | 22 ./configure --prefix=/usr --enable-animation $CONFIGURE_ARGS && |
gokhlayeh@11573 | 23 make && |
pascal@14997 | 24 make DESTDIR=$DESTDIR install |
jozee@2842 | 25 } |
jozee@2842 | 26 |
jozee@2842 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@2842 | 28 genpkg_rules() |
jozee@2842 | 29 { |
jozee@2842 | 30 mkdir -p $fs/usr/share $fs/usr/lib |
pascal@14997 | 31 cp -a $install/usr/share $fs/usr |
pascal@14997 | 32 cp -a $install/usr/lib $fs/usr |
jozee@2842 | 33 |
jozee@2842 | 34 } |
jozee@2842 | 35 |