wok annotate vala/receipt @ rev 5059

get-flash-plugin: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 09 00:20:04 2010 +0100 (2010-03-09)
parents 1caacacc25b3
children fe722bc08c9c
rev   line source
mimas@2290 1 # SliTaz package receipt.
mimas@2290 2
mimas@2290 3 PACKAGE="vala"
erjo@4821 4 VERSION="0.7.9"
mimas@2290 5 CATEGORY="development"
mimas@2290 6 SHORT_DESC="Compiler for the GObject type system"
mimas@2290 7 MAINTAINER="mimas@slitaz.org"
mimas@2290 8 DEPENDS="glib"
mimas@2290 9 BUILD_DEPENDS="flex bison glib-dev"
mimas@2290 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mimas@2290 11 WEB_SITE="http://live.gnome.org/Vala"
erjo@4821 12 WGET_URL="http://download.gnome.org/sources/vala/${VERSION%.*}/$TARBALL"
jozee@4975 13 TAGS="compiler"
mimas@2290 14
mimas@2290 15 # Rules to configure and make the package.
mimas@2290 16 compile_rules()
mimas@2290 17 {
mimas@2290 18 cd $src
mimas@2290 19 ./configure \
mimas@2290 20 --prefix=/usr \
mimas@2290 21 --infodir=/usr/share/info \
mimas@2290 22 --mandir=/usr/share/man \
mimas@2290 23 $CONFIGURE_ARGS &&
mimas@2290 24 make && make DESTDIR=$PWD/_pkg install
mimas@2290 25 }
mimas@2290 26
mimas@2290 27 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2290 28 genpkg_rules()
mimas@2290 29 {
mimas@2290 30 mkdir -p $fs/usr/lib
mimas@2290 31 mkdir -p $fs/usr/share
mimas@2290 32 cp -a $_pkg/usr/bin $fs/usr
mimas@2290 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
mimas@2290 34 cp -a $_pkg/usr/share/vala $fs/usr/share
mimas@2290 35 strip $fs/usr/bin/*
mimas@2290 36 strip $fs/usr/lib/*so*
mimas@2290 37 }
mimas@2290 38