blob: 0ca56a0f667c78e2b8d4c732a6f8252ee6166660 (
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-reedsolomon-git
pkgver=c8a0b83
pkgrel=1
pkgdesc="Pure-Python Reed Solomon encoder/decoder"
arch=('any')
url="https://github.com/mugpahug/reedsolomon"
license=('BSD')
depends=('python' )
optdepends=('cython' )
makedepends=('python-setuptools' 'git')
source=(git+https://github.com/mugpahug/reedsolomon.git)
sha256sums=(SKIP)
package() {
cd ${srcdir}/reedsolomon
# ignores any LDFLAGS set in makepkg.conf
unset LDFLAGS
python ./setup.py install --root=${pkgdir}
}
|