wok-6.x annotate seed/receipt @ rev 23424
updated pgrouting (2.6.2 -> 2.6.3)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 01 08:55:35 2020 +0100 (2020-04-01) |
parents | 86790a278e70 |
children | 6831608a1b2a |
rev | line source |
---|---|
pascal@11232 | 1 # SliTaz package receipt. |
pascal@11232 | 2 |
pascal@11232 | 3 PACKAGE="seed" |
Hans-G?nter@21899 | 4 VERSION="3.8.1" |
pascal@11232 | 5 CATEGORY="system-tools" |
pascal@11232 | 6 SHORT_DESC="Gnome JavaScript REPL/Interpreter." |
pascal@11232 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
Hans-G?nter@21899 | 9 WEB_SITE="https://wiki.gnome.org/action/show/Projects/Seed" |
Hans-G?nter@21899 | 10 |
pascal@11232 | 11 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pascal@11232 | 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" |
pascal@11232 | 13 |
Hans-G?nter@21899 | 14 DEPENDS="cairo dbus dbus-glib gmp gnome-js-common gobject-introspection \ |
Hans-G?nter@21899 | 15 libffi libwebkit libxslt mpfr readline util-linux-uuid" |
Hans-G?nter@21899 | 16 BUILD_DEPENDS="cairo-dev dbus-dev dbus-glib-dev gmp-dev gnome-js-common \ |
Hans-G?nter@21899 | 17 gobject-introspection-dev gtk+-dev intltool libffi-dev \ |
Hans-G?nter@21899 | 18 libwebkit-dev libxslt-dev mpfr-dev readline-dev util-linux-uuid-dev" |
pascal@11232 | 19 |
pascal@11232 | 20 # Rules to configure and make the package. |
pascal@11232 | 21 compile_rules() |
pascal@11232 | 22 { |
Hans-G?nter@21899 | 23 ./configure \ |
Hans-G?nter@21899 | 24 --with-webkit=1.0 \ |
pascal@11232 | 25 $CONFIGURE_ARGS && |
Hans-G?nter@21899 | 26 make && |
Hans-G?nter@21899 | 27 make install |
pascal@11232 | 28 } |
pascal@11232 | 29 |
pascal@11232 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11232 | 31 genpkg_rules() |
pascal@11232 | 32 { |
Hans-G?nter@21899 | 33 mkdir -p $fs/usr/lib/seed |
Hans-G?nter@21899 | 34 mkdir -p $fs/usr/share |
Hans-G?nter@21899 | 35 |
Hans-G?nter@21899 | 36 cp -a $install/usr/bin $fs/usr |
Hans-G?nter@21899 | 37 cp -a $install/usr/lib/*.so* $fs/usr/lib |
Hans-G?nter@21899 | 38 cp -a $install/usr/lib/seed/*.so* $fs/usr/lib/seed |
Hans-G?nter@21899 | 39 cp -a $install/usr/share/seed $fs/usr/share |
pascal@11232 | 40 } |