mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:47:41 +08:00
23 lines
657 B
Bash
23 lines
657 B
Bash
# Moved from CCR - PKGBUILD by Renan Biegelmeyer (RenanBS) <renan.biegel[at]gmail[.dot]com
|
|
|
|
|
|
pkgname=python-markupsafe
|
|
pkgver=0.12
|
|
pkgrel=1
|
|
pkgdesc="Implements a XML/HTML/XHTML Markup safe string for Python"
|
|
arch=('i686' 'x86_64')
|
|
url="http://pypi.python.org/pypi/MarkupSafe"
|
|
license=('custom')
|
|
depends=('python')
|
|
makedepends=('setuptools')
|
|
source=(http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-${pkgver}.tar.gz)
|
|
md5sums=('edd4b6950f6d4ddc6e23fa322f8f0f53')
|
|
|
|
build()
|
|
{
|
|
cd ${srcdir}/MarkupSafe-${pkgver}
|
|
python setup.py install --root=${pkgdir} --optimize=1
|
|
|
|
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|