mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 14:07:13 +08:00
21 lines
645 B
Bash
21 lines
645 B
Bash
# $Id: PKGBUILD 75440 2010-04-01 15:34:56Z ibiru $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=libart-lgpl
|
|
pkgver=2.3.21
|
|
pkgrel=1
|
|
pkgdesc="A library for high-performance 2D graphics"
|
|
url="http://www.levien.com/libart/"
|
|
arch=(i686 x86_64)
|
|
license=('LGPL')
|
|
depends=('glibc')
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${pkgver}.tar.bz2)
|
|
options=('!libtool')
|
|
sha256sums=('fdc11e74c10fc9ffe4188537e2b370c0abacca7d89021d4d303afdf7fd7476fa')
|
|
|
|
build() {
|
|
cd ${startdir}/src/libart_lgpl-${pkgver}
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install || return 1
|
|
}
|