mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
33 lines
890 B
Plaintext
33 lines
890 B
Plaintext
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
# Maintainer:
|
|
pkgname=py3-inflection
|
|
_pkgname=inflection
|
|
pkgver=0.4.0
|
|
pkgrel=0
|
|
pkgdesc="Port of Ruby on Rails' inflector to Python"
|
|
url="https://github.com/jpvanhal/inflection"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest"
|
|
source="$_pkgname-$pkgver.tar.gz::https://github.com/jpvanhal/inflection/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-inflection" # Backkwards compatibility
|
|
provides="py-inflection=$pkgver-r$pkgrel" # Backkwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
py.test-3
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="071b21bdc24f05f7be1e8c51c0cc422d4835b4b6e03cdd2b51717356d4d1bb714ebcd875091e331b7e9be85cfb577a8f80f999ca2bf0c7dd8496bf057ddb144c inflection-0.4.0.tar.gz"
|