summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 76402a4e4c78fa915c12d5be1e659635ed185f4f (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
37
38
39
40
# Maintainer: Andrew Chen <andrew.chuanye.chen@gmail.com>

pkgbase=python-cstruct
pkgname=('python-cstruct' 'python2-cstruct')
pkgver=1.0
pkgrel=1
pkgdesc="C-style structs for Python"
url="https://github.com/andreax79/python-cstruct"
arch=('any')
license=('MIT')
depends=('python')
makedepends=('python' 'python2')
source=('https://pypi.python.org/packages/source/c/cstruct/cstruct-1.0.tar.gz')
md5sums=('b12c1f3718875cafd52bc9222bd21dd5')

prepare() {
  cp -r cstruct-${pkgver} python2-cstruct-${pkgver}
}

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

  cd ${srcdir}/python2-cstruct-${pkgver}
  python2 setup.py build
}

package_python-cstruct() {
  depends=('python')

  cd cstruct-${pkgver}
  python setup.py install -O1 --root="${pkgdir}"
}

package_python2-cstruct() {
  depends=('python2')

  cd python2-cstruct-${pkgver}
  python2 setup.py install -O1 --root="${pkgdir}"
}