cruxports/python3-slugify/Pkgfile

22 lines
630 B
Plaintext
Raw Normal View History

2022-02-18 22:40:09 +00:00
# Description: python library for making slugs out of arbitrary unicode strings
# URL: https://github.com/un33k/python-slugify
# Maintainer: John McQuah, jmcquah at disroot dot org
2022-04-26 11:51:12 +00:00
# Depends on: python3-unidecode
2022-02-18 22:40:09 +00:00
name=python3-slugify
2024-01-28 00:06:56 +00:00
version=8.0.2
2022-02-18 22:40:09 +00:00
release=1
source=(https://github.com/un33k/python-slugify/archive/refs/tags/v$version.tar.gz)
renames=($name-$version.tar.gz)
build() {
2024-01-28 00:06:56 +00:00
cd python-${name##python3-}-$version
2024-01-28 00:06:56 +00:00
sed -i 's/text-unidecode>=1.3/Unidecode>=1.1.1/' setup.py
/usr/bin/python3 setup.py build
2022-02-18 22:40:09 +00:00
2024-01-28 00:06:56 +00:00
/usr/bin/python3 setup.py install --skip-build \
--optimize=1 --prefix=/usr --root=$PKG
2022-02-18 22:40:09 +00:00
}