wok-next view vala/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 835329ad7a46
children 7fc972e95a2e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="vala"
4 VERSION="0.40.3"
5 CATEGORY="development"
6 SHORT_DESC="Compiler for the GObject type system"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://wiki.gnome.org/Projects/Vala"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/vala.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
15 BUILD_DEPENDS="automake libtool glib-dev libxslt-dev"
17 compile_rules() {
18 # if graphviz is not installed
19 sed -i '115d; 121,137d; 139,140d' configure.ac
20 sed -i '/valadoc/d' Makefile.am
21 ACLOCAL= autoreconf -fiv
23 ./configure $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make install
27 }
29 genpkg_rules() {
30 copy @std @dev
31 DEPENDS="glib-dev"
32 TAGS="compiler"
33 }