mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
18 lines
584 B
Bash
18 lines
584 B
Bash
# Contributor: Andries Radu <admiral0 AT tuxfamily.org>
|
|
|
|
pkgname=vala
|
|
pkgver=0.7.6
|
|
pkgrel=1
|
|
pkgdesc="A programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements."
|
|
arch=('arm')
|
|
url="http://live.gnome.org/Vala"
|
|
license=('GPL')
|
|
source=(http://download.gnome.org/sources/vala/0.7/vala-0.7.6.tar.bz2)
|
|
depends=('glib2')
|
|
build() {
|
|
cd $srcdir/vala-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|
|
md5sums=('1453b2ce04bc83685505f33a025ba5a4')
|