Date: Friday, January 6, 2023 @ 13:06:47 Author: alucryd Revision: 1378598
add python-inotify-simple for moonraker Added: python-inotify-simple/ python-inotify-simple/trunk/ python-inotify-simple/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: python-inotify-simple/trunk/PKGBUILD =================================================================== --- python-inotify-simple/trunk/PKGBUILD (rev 0) +++ python-inotify-simple/trunk/PKGBUILD 2023-01-06 13:06:47 UTC (rev 1378598) @@ -0,0 +1,32 @@ +# Maintainer: Maxime Gauduin <[email protected]> +# Contributor: Chris Billington <[email protected]> +# Contributor: Étienne Deparis <[email protected]> + +pkgname=python-inotify-simple +pkgver=1.3.5 +pkgrel=1 +pkgdesc='A simple Python wrapper around inotify' +arch=(any) +url=https://github.com/chrisjbillington/inotify_simple +license=(BSD) +depends=(python) +makedepends=( + git + python-setuptools +) +_tag=2a8f8305125c396896835f0ea4593477d007ff4b +source=(git+https://github.com/chrisjbillington/inotify_simple.git#tag=${_tag}) +b2sums=(SKIP) + +build() { + cd inotify_simple + python setup.py build +} + +package() { + cd inotify_simple + python setup.py install --root="$pkgdir" --optimize=1 --skip-build + install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-inotify-simple/ +} + +# vim: ts=2 sw=2 et:
