19 lines
351 B
Plaintext
19 lines
351 B
Plaintext
|
# Description: Compiler for the GObject type system
|
||
|
# URL: http://live.gnome.org/Vala
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
# Depends on: glib
|
||
|
|
||
|
name=vala
|
||
|
version=0.28.1
|
||
|
release=1
|
||
|
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/vala/${version%.*}/$name-$version.tar.xz )
|
||
|
|
||
|
build() {
|
||
|
cd $name-*
|
||
|
./configure --prefix=/usr
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
}
|
||
|
|