mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
57 lines
1.7 KiB
Bash
57 lines
1.7 KiB
Bash
SUMMARY="Hyperfast and lightweight templating for the Python platform"
|
|
DESCRIPTION="Mako is a template library written in Python. It provides a \
|
|
familiar, non-XML syntax which compiles into Python modules for maximum \
|
|
performance. Mako's syntax and API borrows from the best ideas of many \
|
|
others, including Django and Jinja2 templates, Cheetah, Myghty, and Genshi.
|
|
|
|
Conceptually, Mako is an embedded Python (i.e. Python Server Page) language, \
|
|
which refines the familiar ideas of componentized layout and inheritance to \
|
|
produce one of the most straightforward and flexible models available, while \
|
|
also maintaining close ties to Python calling and scoping semantics."
|
|
HOMEPAGE="http://www.makotemplates.org"
|
|
COPYRIGHT="2006-2015 the Mako authors and contributors"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="7644bc0ee35965d2e146dde31827b8982ed70a58281085fac42869a09764d38c"
|
|
SOURCE_DIR="Mako-$portVersion"
|
|
PYTHON_VERSION="3.6"
|
|
|
|
ARCHITECTURES="arm ppc x86 x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
python3_mako = $portVersion
|
|
cmd:mako_render
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:python$PYTHON_VERSION
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
python3_setuptools
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:python$PYTHON_VERSION
|
|
cmd:gcc
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
$portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3 setup.py build
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
# GENERIC: all python_setuptools-based installs need this
|
|
python=$portPackageLinksDir/cmd~python$PYTHON_VERSION/bin/python3
|
|
pythonVersion=$($python --version 2>&1 | sed 's/Python //' | head -c3)
|
|
installLocation=$prefix/lib/python$pythonVersion/vendor-packages/
|
|
export PYTHONPATH=$installLocation:$PYTHONPATH
|
|
mkdir -p $installLocation
|
|
|
|
$python setup.py install \
|
|
--prefix=$prefix
|
|
}
|