core/vala/PKGBUILD
2015-08-20 12:19:47 +00:00

29 lines
641 B
Bash

pkgname=vala
pkgver=0.28.1
pkgrel=1
pkgdesc="Compiler for the GObject type system."
arch=('x86_64')
url="http://live.gnome.org/Vala"
license=('LGPL')
depends=('glib2')
makedepends=('libxslt')
checkdepends=('dbus' 'libx11' 'gobject-introspection')
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
sha256sums=('1c0eaea6134b75af17221cb699f13d7236d607bb48192565c3d865c38f184f47')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --enable-vapigen
make
}
check() {
cd $pkgname-$pkgver
make check
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}