core/vala/PKGBUILD

29 lines
641 B
Bash
Raw Normal View History

pkgname=vala
2015-03-24 07:23:23 +08:00
pkgver=0.28.0
2015-01-15 20:52:58 +08:00
pkgrel=1
pkgdesc="Compiler for the GObject type system."
arch=('x86_64')
url="http://live.gnome.org/Vala"
license=('LGPL')
depends=('glib2')
makedepends=('libxslt')
2015-03-24 07:23:23 +08:00
checkdepends=('dbus' 'libx11' 'gobject-introspection')
2014-05-18 14:32:49 +08:00
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
2015-03-24 07:23:23 +08:00
sha256sums=('0d9e3bd3f82145664875f7c29b2f544ba92d2814f75412948f774c0727fc977f')
build() {
2014-05-18 14:32:49 +08:00
cd $pkgname-$pkgver
./configure --prefix=/usr --enable-vapigen
make
}
2015-03-24 07:23:23 +08:00
check() {
cd $pkgname-$pkgver
make check
}
package() {
2014-05-18 14:32:49 +08:00
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
2012-01-07 06:30:57 +08:00
}