blob: 8dafec86a6708cb43f5336305d65b14e5da4fc78 (
plain)
1 # Description: Python with the SmartyPants
2 # URL: https://github.com/leohemsted/smartypants.py
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: python3
5
6 name=python3-smartypants
7 version=2.0.1
8 release=1
9 source=("https://github.com/leohemsted/smartypants.py/archive/refs/tags/v${version}.tar.gz")
10
11 build() {
12 cd "smartypants.py-${version}"
13 python3 setup.py install --root="${PKG}" --optimize=1
14 }
|