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-10-29 14:59:31 +02:00
|
|
|
version=0.10.1
|
2010-04-02 17:20:30 +02:00
|
|
|
release=1
|
2010-09-18 19:05:04 +02:00
|
|
|
source=(http://download.gnome.org/sources/vala/0.10/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
|
|
|
|
}
|