wok view vala/receipt @ rev 9997

libsdl-gfx: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Thu May 19 01:19:54 2011 +0200 (2011-05-19)
parents fa3740a5c4fc
children 6b3ee86041ea
line source
1 # SliTaz package receipt.
3 PACKAGE="vala"
4 VERSION="0.12.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="$GNOME_MIRROR/$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 }