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
|
2013-03-04 10:59:06 +01:00
|
|
|
version=0.19.0
|
2013-04-09 02:05:45 +02:00
|
|
|
release=2
|
2013-03-04 10:59:06 +01:00
|
|
|
source=(http://download.gnome.org/sources/vala/0.19/vala-$version.tar.xz)
|
2010-04-02 17:20:30 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
2013-04-09 02:05:45 +02:00
|
|
|
--mandir=/usr/man \
|
|
|
|
--datarootdir=/usr/lib
|
2010-04-02 17:20:30 +02:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
2013-04-09 02:05:45 +02:00
|
|
|
rm -r $PKG/usr/lib/devhelp
|
2010-04-02 17:20:30 +02:00
|
|
|
}
|