mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
33 lines
891 B
Bash
33 lines
891 B
Bash
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor: Anthony T. Brown <brown dot anthony dot t at gmail dot com>
|
|
# Contributor: Ryan Coyner <rcoyner@gmail.com>
|
|
# Contributor: Kozec <kozec at kozec dot com>
|
|
|
|
pkgname=python2-unipath
|
|
_pkgname=Unipath
|
|
_pkgname2=unipath
|
|
pkgver=1.1
|
|
pkgrel=1
|
|
pkgdesc="Python library for calculating pathname and filesystem access"
|
|
arch=('x86_64')
|
|
depends=('python2')
|
|
conflicts=('python-unipath')
|
|
replaces=('python-unipath')
|
|
provides=('python-unipath')
|
|
url="http://sluggo.scrapping.cc/python/${_pkgname2}/"
|
|
license=('Python')
|
|
source=(http://pypi.python.org/packages/source/U/Unipath/Unipath-$pkgver.tar.gz)
|
|
md5sums=('c6d6147ee83328a294e3ceb49073d82d')
|
|
|
|
build() {
|
|
cd $srcdir/${_pkgname}-$pkgver
|
|
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/${_pkgname}-$pkgver
|
|
|
|
python2 setup.py install --root=$pkgdir
|
|
}
|