blob: b07469cab30b186940d7dad47f5005793a51dfa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=py-inotify
_pkgname=pyinotify
pkgver=0.9.4
pkgrel=0
pkgdesc="Linux filesystem events monitoring"
url="http://pypi.python.org/pypi/pyinotify"
arch="noarch"
license="MIT"
depends="python"
depends_dev=""
makedepends="python-dev py-setuptools"
install=""
subpackages=""
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$_pkgname-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
python setup.py build || return 1
}
package() {
cd "$_builddir"
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
}
md5sums="701c91854d241514ede7ffe72086566d pyinotify-0.9.4.tar.gz"
sha256sums="a09767e4e0610e2e1e9f9dc89483b0ee4a53764e700f5866a570bec51d003fec pyinotify-0.9.4.tar.gz"
sha512sums="cdaf9f239a43e3889cdca0ebe1e3559bf6411e4cd829120cc2199cb91122bfe4af62f61a9bf297de28036716f974abd4d7bbeb210e22e96245781fbad08a2b75 pyinotify-0.9.4.tar.gz"
|