wok view vala/receipt @ rev 5321

Up: boxbackup-client (0.11rc7)
author Dominique Corbex <domcox@slitaz.org>
date Wed Apr 21 19:54:12 2010 +0200 (2010-04-21)
parents f917e0dfdfbd
children 5d1cf327756e
line source
1 # SliTaz package receipt.
3 PACKAGE="vala"
4 VERSION="0.7.10"
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"
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 }