Packages adopted from wido

This commit is contained in:
Antoine Lubineau 2011-11-11 12:33:43 +01:00
commit 2ef52e6da2
3 changed files with 41 additions and 0 deletions

17
.SRCINFO Normal file
View file

@ -0,0 +1,17 @@
pkgbase = python-pigment
pkgdesc = Pigment Python library and bindings
pkgver = 0.3.12
pkgrel = 2
url = https://code.fluendo.com/pigment/trac
arch = i686
arch = x86_64
license = GPL
depends = python2
depends = pigment>=0.3.15
depends = pygobject
options = !libtool
source = http://elisa.fluendo.com/static/download/pigment/pigment-python-0.3.12.tar.gz
md5sums = dd42ce291be4d37d9a933c9e3cd71590
pkgname = python-pigment

0
.gitignore vendored Normal file
View file

24
PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
# Contributor: wido <widomaker2k7@gmail.com>
# Contributor: 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=2
pkgdesc="Pigment Python library and bindings"
arch=('i686' 'x86_64')
url="https://code.fluendo.com/pigment/trac"
license=('GPL')
depends=('python2' 'pigment>=0.3.15' 'pygobject')
options=('!libtool')
source=(http://elisa.fluendo.com/static/download/pigment/pigment-python-$pkgver.tar.gz)
md5sums=('dd42ce291be4d37d9a933c9e3cd71590')
build() {
cd "$srcdir/pigment-python-$pkgver"
./configure --prefix=/usr
make || return 1
make DESTDIR="$pkgdir" install
}