mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
28 lines
892 B
Text
28 lines
892 B
Text
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py3-watchdog
|
|
_pkgname=watchdog
|
|
pkgver=2.2.1
|
|
pkgrel=0
|
|
pkgdesc="Filesystem events monitoring"
|
|
url="https://github.com/gorakhargosh/watchdog"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
replaces="py-watchdog" # for backwards compatibility
|
|
provides="py-watchdog=$pkgver-r$pkgrel" # for backwards compatibility
|
|
depends="py3-yaml"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
09ab82e4d8dff960a243e3d51726204dc0c78ac7a01b7954045e8fe8f5959de8d49260f997257e46d0fd0eae9c8fcd9f2c7642e7364cf3b25e1aab7a77e8f934 watchdog-2.2.1.tar.gz
|
|
"
|