wok annotate vala/receipt @ rev 15991

Up: prosody (0.9.3)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 02 14:10:27 2014 +0100 (2014-03-02)
parents f97cdf01aa31
children c46591bcff38
rev   line source
mimas@2290 1 # SliTaz package receipt.
mimas@2290 2
mimas@2290 3 PACKAGE="vala"
al@14238 4 VERSION="0.19.0"
mimas@2290 5 CATEGORY="development"
mimas@2290 6 SHORT_DESC="Compiler for the GObject type system"
mimas@2290 7 MAINTAINER="mimas@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
pankso@12189 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
mimas@2290 10 WEB_SITE="http://live.gnome.org/Vala"
slaxemulator@9589 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
jozee@4975 12 TAGS="compiler"
mimas@2290 13
slaxemulator@10306 14 DEPENDS="glib"
slaxemulator@10306 15 BUILD_DEPENDS="flex bison glib-dev pkg-config"
slaxemulator@10306 16
mimas@2290 17 # Rules to configure and make the package.
mimas@2290 18 compile_rules()
mimas@2290 19 {
mimas@2290 20 cd $src
pankso@12808 21 ./configure $CONFIGURE_ARGS &&
slaxemulator@10306 22 make && make install
mimas@2290 23 }
mimas@2290 24
mimas@2290 25 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2290 26 genpkg_rules()
mimas@2290 27 {
pankso@5255 28 mkdir -p $fs/usr/lib $fs/usr/share
pankso@12808 29 cp -a $install/usr/bin $fs/usr
pankso@12808 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@12808 31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
pankso@12808 32 cp -a $install/usr/include $fs/usr
pankso@12808 33 cp -a $install/usr/share/vala* $fs/usr/share
pankso@12808 34 cp -a $install/usr/share/aclocal $fs/usr/share
mimas@2290 35 }