summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: def57ede6784700e0c5fff314ebcd6c2cbcab98f (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
# Maintainer: Edwin Peters <slimed13 at hotmail dot com>

pkgname=python2-reedsolomon-git
pkgver=c9ec28a 
pkgrel=1
pkgdesc="Pure-Python Reed Solomon encoder/decoder"
arch=('any')
url="https://github.com/tomerfiliba/reedsolomon"
license=('BSD')
depends=('python2' )
optdepends=('cython2' )
makedepends=('python2-setuptools' 'git')
source=(git+https://github.com/tomerfiliba/reedsolomon.git)
sha256sums=(SKIP)

package() {
  cd ${srcdir}/reedsolomon

  # ignores any LDFLAGS set in makepkg.conf
  unset LDFLAGS

  python2 ./setup.py install --root=${pkgdir}

}