19 lines
483 B
Plaintext
19 lines
483 B
Plaintext
# Description: self-hosting compiler that translates Vala source code into C
|
|
# URL: https://wiki.gnome.org/Projects/Vala
|
|
# Maintainer: Thomas Penteker, tek at serverop dot de
|
|
# Depends on: glib
|
|
|
|
name=vala
|
|
version=0.50.3
|
|
release=1
|
|
source=(https://download.gnome.org/sources/vala/${version%.*}/vala-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--disable-valadoc
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -r $PKG/usr/share/devhelp || true
|
|
}
|