commit 2ef52e6da2e2c0249e03cd4e1e8c14ebd604320f Author: Antoine Lubineau Date: Fri Nov 11 12:33:43 2011 +0100 Packages adopted from wido diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..c2c5e6d8bf6f --- /dev/null +++ b/.SRCINFO @@ -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 + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..e78dd7e92803 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,24 @@ +# Contributor: wido +# Contributor: Stefan Husmann +# Contributor: Andrea Scarpino +# Contributor: Andreas Zwinkau +# Contributor: Bjorn Lindeijer + +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 +}