2010-04-02 17:20:30 +02:00
|
|
|
# Description: self-hosting compiler that translates Vala source code into C
|
|
|
|
# URL: http://live.gnome.org/Vala
|
|
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
2010-11-07 20:48:00 +01:00
|
|
|
# Depends on: glib
|
2010-04-02 17:20:30 +02:00
|
|
|
|
|
|
|
name=vala
|
2019-12-15 23:02:35 +01:00
|
|
|
version=0.36.20
|
2013-04-12 10:13:12 +02:00
|
|
|
release=1
|
2017-05-08 02:35:36 +02:00
|
|
|
source=(http://download.gnome.org/sources/vala/${version%.*}/vala-$version.tar.xz)
|
2010-04-02 17:20:30 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
2013-04-12 10:13:12 +02:00
|
|
|
--mandir=/usr/man
|
2019-07-04 13:21:49 +02:00
|
|
|
make CFLAGS="$CFLAGS -Wno-deprecated-declarations"
|
2010-04-02 17:20:30 +02:00
|
|
|
make install DESTDIR=$PKG
|
2019-07-04 13:21:49 +02:00
|
|
|
rm -r $PKG/usr/share/devhelp
|
2010-04-02 17:20:30 +02:00
|
|
|
}
|