mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
SUMMARY="A wrapper around various text markups"
|
|
DESCRIPTION="Markups provides a wrapper around various text markup languages.
|
|
Available by default are Markdown, reStructuredText and Textile, but you can \
|
|
easily add your own markups.
|
|
"
|
|
HOMEPAGE="http://python-requests.org/
|
|
http://pypi.python.org/pypi/markups"
|
|
COPYRIGHT="2012-2015 Dmitry Shachnev"
|
|
LICENSE="BSD (3-clause)"
|
|
REVISION="1"
|
|
SOURCE_URI="https://pypi.python.org/packages/0b/98/3a20a868437c17db37cec47cc82fbd1030aa55765faf06207ab832e85152/Markups-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="5639ddd76d74e0a5335e5b66ff2f1b3f9a9f0ab6eeff76a1003f59ed0ec2b721"
|
|
SOURCE_DIR="Markups-$portVersion"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
python3_markups = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:python3
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
python3_setuptools
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:python3
|
|
"
|
|
|
|
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 \
|
|
--single-version-externally-managed \
|
|
--root=/ --prefix=$prefix
|
|
}
|