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

pkgname=python-unireedsolomon-git
pkgver=f375f61
pkgrel=1
pkgdesc="Documented Universal Errors-and-erasures Reed Solomon Codec written in pure Python"
arch=('any')
url="https://github.com/lrq3000/unireedsolomon"
license=('MIT')
depends=('python' )
optdepends=('cython' )
makedepends=('python-setuptools' 'git')
source=(git+https://github.com/lrq3000/unireedsolomon.git)
sha256sums=(SKIP)

package() {
  cd ${srcdir}/unireedsolomon

  # ignores any LDFLAGS set in makepkg.conf
  unset LDFLAGS

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

}