blob: 1be662cccf165c775f21f513222368a9f5533f2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Frank Motsch <frank@motschsoft.de>
pkgname=python-posix_ipc
pkgver=1.0.0
pkgrel=1
pkgdesc="POSIX IPC primitives (semaphores, shared memory and message queues) for Python"
arch=('any')
url="http://semanchuk.com/philip/posix_ipc/"
license=('BSD')
groups=()
depends=('python')
makedepends=('python-distribute')
options=(!emptydirs)
source=("http://semanchuk.com/philip/posix_ipc/posix_ipc-$pkgver.tar.gz")
md5sums=('85607a392087715ac3a3c7ded2492d06')
package() {
cd "$srcdir/posix_ipc-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
|