summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 756f04d66fe0272c4b25cd393fcd4168aedcaeb5 (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=6.5.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=('04acf4d8fe50d9150d19ead55a25c015')

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

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