summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c8cb03fba52d0d143d89bf2769133a6f56a1dce4 (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
# Maintainer: gee

pkgname=python2-czipfile
pkgver=1.0.0
pkgrel=2
pkgdesc='czipfile is a faster replacement for Python’s builtin “zipfile” module'
url='https://github.com/V-E-O/czipfile'
arch=('x86_64')
license=('PSF')
depends=('python2')
makedepends=('python2-setuptools' 'git')
source=(git+https://github.com/V-E-O/czipfile.git)
sha512sums=(SKIP)

build() {
  cd czipfile
  python2 setup.py build
}

package() {
  cd czipfile
  python2 setup.py install -O1 --root="${pkgdir}" --prefix=/usr --skip-build
  install -Dm 644 README -t "${pkgdir}/usr/share/doc/${pkgname}"
}

# vim: ts=2 sw=2 et: