Added python-pycompiz-svn

This commit is contained in:
Florian Dejonckheere 2013-10-31 18:07:10 +01:00
commit 1f6fdcd070
2 changed files with 36 additions and 0 deletions

14
.SRCINFO Normal file
View file

@ -0,0 +1,14 @@
pkgbase = python-pycompiz-svn
pkgdesc = A high level abstraction utility for controlling Compiz Fusion through D-Bus messaging
pkgver = 3
pkgrel = 1
url = https://code.google.com/p/pycompiz/
arch = any
license = GPL
makedepends = subversion
depends = python
source = pycompiz::svn+http://pycompiz.googlecode.com/svn/trunk/
md5sums = SKIP
pkgname = python-pycompiz-svn

22
PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
# Maintainer: Florian Dejonckheere <florian@floriandejonckheere.be>
pkgname=python-pycompiz-svn
pkgver=3
pkgrel=1
pkgdesc="A high level abstraction utility for controlling Compiz Fusion through D-Bus messaging"
arch=('any')
url="https://code.google.com/p/pycompiz/"
license=('GPL')
depends=('python')
makedepends=('subversion')
source=('pycompiz::svn+http://pycompiz.googlecode.com/svn/trunk/')
md5sums=('SKIP')
pkgver() {
cd "${srcdir}/pycompiz"
svnversion
}
package() {
cd "${srcdir}/pycompiz/pyCompiz"
python2 setup.py install --root "${pkgdir}"
}