summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 148d58e436c486d00c09794fd6e97a852401ee10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Adam Goldsmith <contact@adamgoldsmith.name>

pkgname=python-kiss
_pkgname=kiss
pkgver=7.0.0
pkgrel=1
pkgdesc="A Python Module that implementations the KISS Protocol for communicating with KISS-enabled devices (such as Serial or TCP TNCs)."
arch=('any')
url="https://github.com/ampledata/kiss"
license=('Apache')
depends=(python python-pyserial)
source=("https://files.pythonhosted.org/packages/source/k/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
md5sums=('dce6aa68437f19e7092434b2c4700b4b')

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

# vim:set ts=2 sw=2 et: