wok view vala/receipt @ rev 9356
gnome-doc-utils: Moved docbook-xml from build depends to depends.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat Mar 19 23:28:21 2011 +0000 (2011-03-19) |
parents | e176d206d075 |
children | 0e69975e5d9b |
line source
1 # SliTaz package receipt.
3 PACKAGE="vala"
4 VERSION="0.11.6"
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/$PACKAGE/${VERSION%.*}/$TARBALL"
13 TAGS="compiler"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib $fs/usr/share
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
29 cp -a $_pkg/usr/include $fs/usr
30 cp -a $_pkg/usr/share/vala* $fs/usr/share
31 cp -a $_pkg/usr/share/aclocal $fs/usr/share
32 }