[arch-commits] Commit in python-munkres/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Fri Oct 25 15:44:46 UTC 2019
Date: Friday, October 25, 2019 @ 15:44:46
Author: felixonmars
Revision: 519185
archrelease: copy trunk to community-staging-any
Added:
python-munkres/repos/community-staging-any/
python-munkres/repos/community-staging-any/PKGBUILD
(from rev 519182, python-munkres/trunk/PKGBUILD)
----------+
PKGBUILD | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
Copied: python-munkres/repos/community-staging-any/PKGBUILD (from rev 519182, python-munkres/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-10-25 15:44:46 UTC (rev 519185)
@@ -0,0 +1,31 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Adrian Sampson <adrian at radbox.org>
+
+pkgname=python-munkres
+pkgver=1.1.2
+pkgrel=2
+pkgdesc='Munkres algorithm for Python'
+arch=(any)
+url=https://github.com/bmc/munkres
+license=(Apache)
+depends=(python)
+makedepends=(
+ git
+ python-setuptools
+)
+source=(git+https://github.com/bmc/munkres.git#tag=release-${pkgver})
+sha256sums=(SKIP)
+
+build() {
+ cd munkres
+
+ python setup.py build
+}
+
+package() {
+ cd munkres
+
+ python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list