mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
24 lines
618 B
Bash
24 lines
618 B
Bash
# Moved from CCR - PKGBUILD by Renan Biegelmeyer (RenanBS) <renan.biegel[at]gmail[.dot]com>
|
|
|
|
pkgname=python-jinja
|
|
pkgver=2.5.5
|
|
pkgrel=1
|
|
pkgdesc="A simple pythonic template language written in Python"
|
|
arch=('any')
|
|
url="http://jinja.pocoo.org/2/"
|
|
license=('BSD')
|
|
depends=('python-markupsafe' 'setuptools' )
|
|
makedepends=('python')
|
|
source=(http://pypi.python.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz)
|
|
md5sums=('83b20c1eeb31f49d8e6392efae91b7d5')
|
|
|
|
build()
|
|
{
|
|
cd "$srcdir/Jinja2-$pkgver"
|
|
|
|
python2 setup.py install --root="$pkgdir" -O1
|
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
}
|
|
|