mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
18 lines
514 B
Bash
18 lines
514 B
Bash
pkgname=python3-toposort
|
|
_pkgname=toposort
|
|
pkgver=1.4
|
|
pkgrel=1
|
|
pkgdesc='Implements a topological sort algorithm.'
|
|
arch=('any')
|
|
url='https://bitbucket.org/ericvsmith/toposort'
|
|
license=('apache')
|
|
depends=('python3')
|
|
makedepends=('python3-setuptools')
|
|
source=("https://pypi.python.org/packages/source/t/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
|
|
sha256sums=('c190b9d9a9e53ae2835f4d524130147af601fbd63677d19381c65067a80fa903')
|
|
|
|
package() {
|
|
cd "${_pkgname}-${pkgver}"
|
|
python3 setup.py install --root="${pkgdir}/"
|
|
}
|