summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: aa8d5694f8eb610b1df4616eb376cef1ee11fa72 (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.6.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>=5.0'
         'python-future>=0.15.2'
         'python-whichcraft>=0.4.0'
         'python-requests>=2.8.0')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
source=("https://github.com/audreyr/${_pkgname}/archive/${pkgver}.tar.gz")
md5sums=("3ccca1f825c4722074580f5fcd57a5af")

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: