wok-next view vala/receipt @ rev 20907

slitaz-base-files: set correct SLITAZ_ARCH in slitaz.conf (affected x86_64) - thanks shann
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 10 15:39:58 2018 +0300 (2018-08-10)
parents 1ff723a6455b
children d5aab818505e
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="mimas@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 }