summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 681a0499a57fff29cab065a0dcc22b4a0c3c7965 (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
# Maintainer: Jens John <jjohn@2ion.de>
pkgname=gien
pkgver=0.4.2
pkgrel=1
pkgdesc="Export Github issue tracker and wiki contents to local email storage"
arch=('any')
license=('GPL')
url="https://github.com/2ion/gien"
depends=(\
  'python'\
  'python-markdown'\
  'python-progressbar'\
  'python-pygithub'\
  'python-pygit2'\
  'python-requests')
makedepends=('python-setuptools')
options=(!emptydirs)
source=("https://pypi.python.org/packages/d2/7a/59ce610d3026da98ccb51967ae1e041b33e542053074f510b3daf1dc92c2/gien-0.4.1.tar.gz")
sha256sums=("8986465917a7a275167b0f6cfe94951e3c8484a850ec29fdba521b25d2ff8fc5")

build()
{
  cd "$srcdir/${pkgname}-${pkgver}"
  python setup.py build
}

package()
{
  cd "$srcdir/${pkgname}-${pkgver}"
  python setup.py install -O1 --skip-build --root="$pkgdir"
}