mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 09:52:13 +08:00
30 lines
640 B
Bash
30 lines
640 B
Bash
# Maintainer: Manuel Tortosa <manutortosa@chakra-project.org>
|
|
|
|
pkgname=babl
|
|
pkgver=0.1.10
|
|
pkgrel=2
|
|
pkgdesc="Dynamic, any to any, pixel format conversion library"
|
|
arch=('x86_64')
|
|
url="http://gegl.org/babl/"
|
|
license=('LGPL3')
|
|
depends=('glibc' 'filesystem-extra')
|
|
options=('!libtool' '!makeflags')
|
|
source=("ftp://ftp.gimp.org/pub/babl/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('9e1542ab5c0b12ea3af076a9a2f02d79')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/extra/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|