aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-pathtools/APKBUILD
blob: 1dea85ff752c2cd84a57772d6c14825ad3ae1e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=py3-pathtools
_pkgname=pathtools
pkgver=0.1.2
pkgrel=6
pkgdesc="Path utilities"
url="https://github.com/gorakhargosh/pathtools"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

replaces=py-pathtools # Backwards compatibility
provides=py-pathtools=$pkgver-r$pkgrel # Backwards compatibility

prepare() {
	default_prepare
	# remove interpreter line from libraries
	sed -i '/#!\//d' pathtools/*.py
}

build() {
	python3 setup.py build
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="e014cb17f3d61ce7979e36663f94a44d4f1116c35e3d2ec8c4ac207a81935dde246495ed06597e6edade1509f384b9e5729a97ffd3eec31b1d1c4a8372d1dfd7  pathtools-0.1.2.tar.gz"