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
|
2014-08-26 15:13:08 +02:00
|
|
|
version=0.25.2
|
2013-04-12 10:13:12 +02:00
|
|
|
release=1
|
2014-07-27 18:44:03 +02:00
|
|
|
source=(http://download.gnome.org/sources/vala/0.25/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
|
2010-04-02 17:20:30 +02:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
2013-04-12 10:13:12 +02:00
|
|
|
rm -r $PKG/usr/share/devhelp
|
2010-04-02 17:20:30 +02:00
|
|
|
}
|