mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 01:54:40 +08:00
29 lines
663 B
Bash
29 lines
663 B
Bash
pkgname=vala
|
|
pkgver=0.38.3
|
|
pkgrel=1
|
|
pkgdesc="Compiler for the GObject type system."
|
|
arch=('x86_64')
|
|
url="https://wiki.gnome.org/Projects/Vala"
|
|
license=('LGPL')
|
|
depends=('glib2' 'graphviz')
|
|
makedepends=('libxslt')
|
|
checkdepends=('dbus' 'libx11' 'gobject-introspection')
|
|
source=(https://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
|
|
sha256sums=('4addaff4625b203763c454e81b928219d41e152f9982c836c72094d3315d6854')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-vapigen
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|