wok view vala/receipt @ rev 7317

Up: mono to 2.8.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 17 21:21:58 2010 +0000 (2010-11-17)
parents fe722bc08c9c
children 433e106036e5
line source
1 # SliTaz package receipt.
3 PACKAGE="vala"
4 VERSION="0.10.0"
5 CATEGORY="development"
6 SHORT_DESC="Compiler for the GObject type system"
7 MAINTAINER="mimas@slitaz.org"
8 DEPENDS="glib"
9 BUILD_DEPENDS="flex bison glib-dev pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://live.gnome.org/Vala"
12 WGET_URL="http://download.gnome.org/sources/vala/${VERSION%.*}/$TARBALL"
13 TAGS="compiler"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
34 cp -a $_pkg/usr/include $fs/usr
35 cp -a $_pkg/usr/share/vala* $fs/usr/share
36 }