git » vala.git » main » tree

[main] / PKGBUILD

# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Timm Preetz <timm@preetz.us>

pkgname=vala
pkgver=0.56.16
pkgrel=1
pkgdesc='Compiler for the GObject type system'
url='https://wiki.gnome.org/Projects/Vala'
arch=('armv7h' 'aarch64')
license=(LGPL-2.1-or-later)
depends=(
  bash
  gcc
  glib2
  glibc
  graphviz
  gtk-doc
  pkg-config
  ttf-font
  gobject-introspection
)
makedepends=(
  git
  help2man
  libxslt
)
provides=(
  libvala{,doc}-${pkgver%.*}.so
  valadoc
)
conflicts=(valadoc)
replaces=(valadoc)
_commit=ef0d911609f6691df0f10877ee97ee34cd24d689  # tags/0.56.17^0

source=("https://download.gnome.org/sources/vala/0.56/vala-0.56.16.tar.xz")
#source=("git+https://gitlab.gnome.org/GNOME/vala.git?signed#tag=$pkgver")

build() {
  cd vala-$pkgver
  ./configure --prefix=/usr
  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  make
}


package() {
  cd vala-$pkgver
  make DESTDIR="$pkgdir" install
}

# vim:set sw=2 sts=-1 et:
sha256sums=('05487b5600f5d2f09e66a753cccd8f39c1bff9f148aea1b7774d505b9c8bca9b')