mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 04:37:19 +08:00
29 lines
800 B
Bash
29 lines
800 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=vala
|
|
pkgver=0.12.1
|
|
pkgrel=1
|
|
pkgdesc="Compiler for the GObject type system"
|
|
arch=('i686' 'x86_64')
|
|
url="http://live.gnome.org/Vala"
|
|
license=('LGPL')
|
|
depends=('glib2')
|
|
makedepends=('libxslt')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.12/${pkgname}-${pkgver}.tar.xz)
|
|
sha256sums=('f102bb64549ebe88955bb9fa0f502d974413aec71fec88e3544c65adfeb0afb4')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-vapigen
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
} |