mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 20:34:37 +08:00
29 lines
641 B
Bash
29 lines
641 B
Bash
pkgname=vala
|
|
pkgver=0.28.0
|
|
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=('0d9e3bd3f82145664875f7c29b2f544ba92d2814f75412948f774c0727fc977f')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-vapigen
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|