wok view vala/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents c46591bcff38
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="vala"
4 VERSION="0.36.4"
5 CATEGORY="development"
6 SHORT_DESC="Compiler for the GObject type system"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://wiki.gnome.org/Projects/Vala"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
12 TAGS="compiler"
13 HOST_ARCH="i486 arm"
15 DEPENDS="glib"
16 BUILD_DEPENDS="flex bison glib-dev pkg-config"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
32 cp -a $install/usr/include $fs/usr
33 cp -a $install/usr/share/vala* $fs/usr/share
34 cp -a $install/usr/share/aclocal $fs/usr/share
35 }