mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
667 B
Bash
23 lines
667 B
Bash
# $Id: PKGBUILD 3146 2009-09-28 10:02:55Z ibiru $
|
|
# Maintainer: Timm Preetz <timm@preetz.us>
|
|
# Contributor: Alexander Fehr <pizzapunk gmail com>
|
|
|
|
pkgname=vala
|
|
pkgver=0.7.7
|
|
pkgrel=1
|
|
pkgdesc="Compiler for the GObject type system"
|
|
arch=('i686' 'x86_64')
|
|
url="http://live.gnome.org/Vala"
|
|
license=('LGPL')
|
|
depends=('bash' 'glib2')
|
|
makedepends=('libxslt')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.7/$pkgname-$pkgver.tar.gz)
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr --enable-vapigen || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums=('a02d16e153315c92724943066afe63a6')
|