mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 13:42:38 +01:00
22 lines
564 B
Bash
22 lines
564 B
Bash
# Maintainer: Florian Dejonckheere <florian at floriandejonckheere dot 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}"
|
|
}
|