summaryrefslogtreecommitdiff
path: root/pcr/python-lirc/PKGBUILD
blob: 9b45b429fc4e6aa8d0c44e6e51e75b0598981821 (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
# Contributor: Eelco Cramer <eelco@servicelab.org>
# Maintainer: Aurélien Desbrières <aurelien@xload.io>
# Contributor: Luke Shumaker <lukeshu@lukeshu.com>

pkgname=python-lirc
pkgver=1.2.3
_gitver='commit=4091fe918f3eed2513dad008828565cace408d2f' # tag your releases, man
pkgrel=1
pkgdesc="LIRC extension written in Cython for Python 3"
arch=('x86_64' 'i686' 'armv7h')
url="https://github.com/tompreston/python-lirc"
license=('GPL3')
depends=('python'
         'lirc'
	 'git'
         'cython')
makedepends=('python-setuptools')
# We need to re-run cython for 3.7, and the needed files aren't in the PyPI archive
#source=("https://pypi.io/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
#sha256sums=(61481b36cc9c10cd215f7ddd93990f7c722af3d918c297bf2366fce1ca39b1f3)
source=("git+${url}#${_gitver}")
sha256sums=('SKIP')

build() {
  cd "$srcdir/$pkgname"
  make py3
}

package() {
  cd "$srcdir/$pkgname"
  python setup.py install --root=$pkgdir --optimize=1
}