19 lines
452 B
Plaintext
19 lines
452 B
Plaintext
# Description: A template library written in Python
|
|
# URL: https://www.makotemplates.org/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-markupsafe
|
|
|
|
name=python3-mako
|
|
version=1.3.2
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/M/Mako/Mako-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Mako-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG --optimize=1
|
|
}
|