12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- # Build recipe for pymako (Mako).
- #
- # Copyright (C) 2019-2020 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=Mako
- version=1.1.2
- release=2
- pkgname=pymako
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/python"
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=http://files.pythonhosted.org/packages/42/64/fc7c506d14d8b6ed363e7798ffec2dfe4ba21e14dda4cfab99f4430cba3a/$tarname
- 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
- Jinja2templates, 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.
- The package name is called \"pymako\" in order to avoid possible
- conflicts with another package name.
- "
- homepage=http://www.makotemplates.org
- license=MIT
- docs="AUTHORS CHANGES LICENSE PKG-INFO README.rst"
- docsdir="${docdir}/${pkgname}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- python3 setup.py build
- python3 setup.py install --prefix=/usr --root="$destdir" --optimize=1
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- cp -p $docs "${destdir}${docsdir}"
- }
|