mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
721 B
Bash
23 lines
721 B
Bash
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
|
|
# Contributor: Andrea Scarpino <bash.lnx@gmail.com>
|
|
# Contributor: Andreas Zwinkau <beza1e1@web.de>
|
|
# Contributor: Bjorn Lindeijer <bjorn lindeijer nl>
|
|
|
|
pkgname=python-pigment
|
|
pkgver=0.3.12
|
|
pkgrel=1
|
|
pkgdesc="Pigment Python library and bindings"
|
|
arch=('i686' 'x86_64')
|
|
url="https://code.fluendo.com/pigment/trac"
|
|
license=('GPL')
|
|
depends=('python' 'pigment>=0.3.15' 'pygobject')
|
|
options=('!libtool')
|
|
source=(http://elisa.fluendo.com/static/download/pigment/pigment-python-$pkgver.tar.bz2)
|
|
md5sums=('d5236f3fe5c94cbd52364d21ffa3e21c')
|
|
|
|
build() {
|
|
cd "$srcdir/pigment-python-$pkgver"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|