contrib/vala/Pkgfile
2019-12-15 23:02:35 +01:00

19 lines
522 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.36.20
release=1
source=(http://download.gnome.org/sources/vala/${version%.*}/vala-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man
make CFLAGS="$CFLAGS -Wno-deprecated-declarations"
make install DESTDIR=$PKG
rm -r $PKG/usr/share/devhelp
}