Date: Friday, January 6, 2023 @ 13:07:00
Author: alucryd
Revision: 1378599
archrelease: copy trunk to community-any
Added:
python-inotify-simple/repos/
python-inotify-simple/repos/community-any/
python-inotify-simple/repos/community-any/PKGBUILD
(from rev 1378598, python-inotify-simple/trunk/PKGBUILD)
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: python-inotify-simple/repos/community-any/PKGBUILD (from rev 1378598,
python-inotify-simple/trunk/PKGBUILD)
===================================================================
--- repos/community-any/PKGBUILD (rev 0)
+++ repos/community-any/PKGBUILD 2023-01-06 13:07:00 UTC (rev 1378599)
@@ -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: