summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8ee3726537d3a8c3d9bc87b60d4940c7d10eb134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Maintainer: Meir Kriheli <mkriheli@gmail.com>
# Contributor:

pkgname=python-cookiecutter
_pkgname=cookiecutter
pkgver=1.7.0
pkgrel=1
pkgdesc="A command-line utility that creates projects from project templates"
arch=('any')
url="https://github.com/audreyr/cookiecutter"
license=('BSD')
groups=('devel')
depends=('python-jinja>=2.7'
         'python-jinja-time>=0.1.0'
         'python-poyo>=0.1.0'
         'python-binaryornot>=0.2.0'
         'python-click>=7.0'
         'python-future>=0.15.2'
         'python-whichcraft>=0.4.0'
         'python-requests>=2.18.0')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
source=("https://github.com/audreyr/${_pkgname}/archive/${pkgver}.tar.gz")
md5sums=('5a8f2f588e89be78d63b3327b12ca2a4')

package() {
  cd "$srcdir/${_pkgname}-${pkgver}"
  python setup.py install --root="$pkgdir/"
  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim:set ts=2 sw=2 et: