19 lines
465 B
Plaintext
19 lines
465 B
Plaintext
# 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: glib
|
|
|
|
name=vala
|
|
version=0.17.0
|
|
release=1
|
|
source=(http://download.gnome.org/sources/vala/0.17/vala-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -r $PKG/usr/share/devhelp
|
|
}
|