mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
Packages adopted from wido
This commit is contained in:
commit
a7775cb127
3 changed files with 58 additions and 0 deletions
17
.SRCINFO
Normal file
17
.SRCINFO
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
pkgbase = python-pigment-svn
|
||||
pkgdesc = Development version of Pigment Python library and bindings.
|
||||
pkgver = 1557
|
||||
pkgrel = 1
|
||||
url = https://code.fluendo.com/pigment/trac
|
||||
arch = any
|
||||
license = GPL
|
||||
makedepends = subversion
|
||||
depends = pigment-svn
|
||||
depends = python
|
||||
depends = pygobject
|
||||
conflicts = python-pigment
|
||||
conflicts = pigment-python-svn
|
||||
options = !libtool
|
||||
|
||||
pkgname = python-pigment-svn
|
||||
|
||||
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
41
PKGBUILD
Normal file
41
PKGBUILD
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Contributor: Jon Kristian Nilsen <jokr.nilsen@gmail.com>
|
||||
|
||||
pkgname=python-pigment-svn
|
||||
pkgver=1557
|
||||
pkgrel=1
|
||||
pkgdesc="Development version of Pigment Python library and bindings."
|
||||
url="https://code.fluendo.com/pigment/trac"
|
||||
arch=(any)
|
||||
license=('GPL')
|
||||
|
||||
depends=('pigment-svn' 'python' 'pygobject')
|
||||
makedepends=('subversion')
|
||||
conflicts=('python-pigment' 'pigment-python-svn')
|
||||
options=('!libtool')
|
||||
|
||||
_svntrunk="https://code.fluendo.com/pigment/svn/trunk/pigment-python"
|
||||
_svnmod="pigment-python"
|
||||
|
||||
build() {
|
||||
cd ${srcdir}
|
||||
|
||||
if [ -d $_svnmod/.svn ]; then
|
||||
(cd $_svnmod && svn up -r $pkgver)
|
||||
else
|
||||
svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
|
||||
fi
|
||||
|
||||
msg "SVN checkout done or server timeout"
|
||||
msg "Starting make..."
|
||||
|
||||
cp -r $_svnmod $_svnmod-build
|
||||
cd $_svnmod-build
|
||||
|
||||
./autogen.sh --prefix=/usr
|
||||
make || return 1
|
||||
make DESTDIR=${pkgdir} install
|
||||
|
||||
rm -rf ${srcdir}/$_svnmod-build
|
||||
}
|
||||
|
||||
# vim:syntax=sh
|
||||
Loading…
Add table
Reference in a new issue