wok view seed/receipt @ rev 16152

Add: tupi (create 2D animation)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 26 23:53:45 2014 +0100 (2014-03-26)
parents c59abd89a5fa
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="seed"
4 VERSION="3.2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Gnome JavaScript REPL/Interpreter."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://www.gnome.org/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="libffi libwebkit gobject-introspection dbus dbus-glib readline \
14 mpfr gmp libxslt util-linux-uuid cairo gnome-js-common"
15 BUILD_DEPENDS="libffi-dev libwebkit-dev gobject-introspection-dev dbus-dev \
16 dbus-glib-dev readline-dev mpfr-dev gmp-dev libxslt-dev util-linux-uuid-dev \
17 cairo-dev gnome-js-common intltool gtk+-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --with-webkit=1.0 \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/seed $fs/usr/share
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/lib/seed/*.so* $fs/usr/lib/seed
36 cp -a $install/usr/share/seed $fs/usr/share
37 }