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
|
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=vala
|
2010-07-16 15:49:03 +02:00
|
|
|
version=0.9.3
|
2010-04-02 17:20:30 +02:00
|
|
|
release=1
|
2010-06-08 23:50:40 +02:00
|
|
|
source=(http://download.gnome.org/sources/vala/0.9/vala-$version.tar.bz2)
|
2010-04-02 17:20:30 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man
|
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
|
|
|
}
|