contrib/vala/Pkgfile

22 lines
491 B
Plaintext
Raw Normal View History

2010-04-02 17:20:30 +02:00
# Description: self-hosting compiler that translates Vala source code into C
2021-02-01 11:49:39 +01:00
# URL: https://wiki.gnome.org/Projects/Vala
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gobject-introspection
2010-04-02 17:20:30 +02:00
name=vala
2024-04-21 20:04:59 +02:00
version=0.56.17
2013-04-12 10:13:12 +02:00
release=1
2020-04-12 03:58:21 +02:00
source=(https://download.gnome.org/sources/vala/${version%.*}/vala-$version.tar.xz)
2010-04-02 17:20:30 +02:00
build() {
cd $name-$version
2023-03-26 11:22:02 +02:00
2010-04-02 17:20:30 +02:00
./configure --prefix=/usr \
--disable-valadoc
2023-03-26 11:22:02 +02:00
make
2010-04-02 17:20:30 +02:00
make install DESTDIR=$PKG
2023-03-26 11:22:02 +02:00
2020-08-11 12:38:19 +02:00
rm -r $PKG/usr/share/devhelp || true
2010-04-02 17:20:30 +02:00
}