wok-4.x diff seed/receipt @ rev 11460
orage: add popt to depends
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Dec 17 11:42:21 2011 +0100 (2011-12-17) |
parents | |
children | a1c85c7011d7 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/seed/receipt Sat Dec 17 11:42:21 2011 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="seed" 1.7 +VERSION="3.2.0" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Gnome JavaScript REPL/Interpreter." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.xz" 1.12 +WEB_SITE="http://www.gnome.org/" 1.13 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" 1.14 + 1.15 +DEPENDS="libffi libwebkit gobject-introspection dbus dbus-glib readline \ 1.16 +mpfr gmp libxslt util-linux-ng-uuid cairo gnome-js-common" 1.17 +BUILD_DEPENDS="libffi-dev libwebkit-dev gobject-introspection-dev dbus-dev \ 1.18 +dbus-glib-dev readline-dev mpfr-dev gmp-dev libxslt-dev util-linux-ng-uuid-dev \ 1.19 +cairo-dev gnome-js-common" 1.20 + 1.21 +# Rules to configure and make the package. 1.22 +compile_rules() 1.23 +{ 1.24 + cd $src 1.25 + ./configure \ 1.26 + --with-webkit=1.0 \ 1.27 + $CONFIGURE_ARGS && 1.28 + make && make install 1.29 +} 1.30 + 1.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.32 +genpkg_rules() 1.33 +{ 1.34 + mkdir -p $fs/usr/lib/seed $fs/usr/share 1.35 + cp -a $install/usr/bin $fs/usr 1.36 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.37 + cp -a $install/usr/lib/seed/*.so* $fs/usr/lib/seed 1.38 + cp -a $install/usr/share/seed $fs/usr/share 1.39 +}