mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-10 20:40:20 +00:00
20 lines
558 B
Plaintext
Executable File
20 lines
558 B
Plaintext
Executable File
# description : Python module that implements hyperfast and lightweight templating for the Python platform
|
|
# homepage : http://www.makotemplates.org/
|
|
# maintainer : Emmett1, emmett1.2miligrams at gmail.com
|
|
# depends : python3 python3-markupsafe
|
|
|
|
name=python3-mako
|
|
version=1.0.12
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/M/Mako/Mako-$version.tar.gz)
|
|
md5sum=(4a7aef27217a8e6c1a29447c9b1b00ab)
|
|
|
|
build() {
|
|
cd Mako-$version
|
|
|
|
python3 setup.py install --root=$PKG --optimize=1
|
|
|
|
# conflict with python2-mako
|
|
rm $PKG/usr/bin/mako-render
|
|
}
|