Files
haikuports/dev-python/mako/python3_mako-1.0.1.recipe
Humdinger 44defae7e2 Recipe cosmetics.
Improved SUMMARY/DESCRIPTIONs.
Re-ordered blocks.
2015-08-24 17:25:09 +02:00

56 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="1"
SOURCE_URI="https://pypi.python.org/packages/source/M/Mako/Mako-1.0.1.tar.gz"
CHECKSUM_SHA256="45f0869febea59dab7efd256fb451c377cbb7947bef386ff0bb44627c31a8d1c"
SOURCE_DIR="Mako-$portVersion"
ARCHITECTURES="arm ppc x86 x86_gcc2 x86_64"
PROVIDES="
python3_mako = $portVersion
cmd:mako_render
"
REQUIRES="
haiku
cmd:python3
"
BUILD_REQUIRES="
python3_setuptools
"
BUILD_PREREQUIRES="
haiku_devel
cmd:python3
cmd:gcc
"
BUILD()
{
$portPackageLinksDir/cmd~python3/bin/python3 setup.py build
}
INSTALL()
{
# GENERIC: all python_setuptools-based installs need this
python=$portPackageLinksDir/cmd~python3/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
}