From 39b42ffdd167b59988489b8075f901482c4e1b6b Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 13 May 2021 16:27:07 +0200 Subject: community/vala-bootstrap: added for bootstrapping vala on i486 --- community/vala-bootstrap/PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 community/vala-bootstrap/PKGBUILD (limited to 'community') diff --git a/community/vala-bootstrap/PKGBUILD b/community/vala-bootstrap/PKGBUILD new file mode 100644 index 00000000..40aceda3 --- /dev/null +++ b/community/vala-bootstrap/PKGBUILD @@ -0,0 +1,37 @@ +# Maintainer: Andreas Baumann + +pkgname=vala-bootstrap +pkgver=0.16.1 +pkgrel=1 +pkgdesc='Bootstrapping Compiler for the GObject type system' +url='https://wiki.gnome.org/Projects/Vala' +arch=(i486 i686 pentium4 x86_64) +license=(LGPL) +depends=() +makedepends=(git) +provides=(vala) +conflicts=(vala) +_commit=b2beeacc # corresponds to 0.16.1 +source=("git+https://gitlab.gnome.org/Archive/vala-bootstrap.git#commit=$_commit") +sha256sums=('SKIP') + +prepare() { + cd $pkgname +} + +build() { + cd $pkgname + ./configure --prefix=/usr --disable-build-from-vala + make +} + +check() { + cd $pkgname +# tests are horribly broken +# make check +} + +package() { + cd $pkgname + make DESTDIR="$pkgdir" install +} -- cgit v1.2.3