summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 00761a845c28e27c3cb0b011ef658eedcb2197fa (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
33
34
35
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# See http://wiki.archlinux.org/index.php/Python_Package_Guidelines for more
# information on Python packaging.

# Maintainer: Sean Anderson <seanga2@gmail.com>
pkgname=python-kflash
pkgver=0.9.1
pkgrel=1
pkgdesc="A Python-based cross-platform Kendryte K210 UART ISP Utility"
arch=(any)
url="https://github.com/kendryte/kflash.py"
license=('MIT')
groups=()
depends=('python' 'python-pyserial' 'python-pyelftools')
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=("https://github.com/kendryte/kflash.py/archive/v$pkgver.tar.gz")
sha512sums=('0bd05acc3b3118186757b293c3b8b95c4590f69c07cd6b6b3802795ba3406cb6cedf6dea57fdfaad89e8939f23dfc95f921572fa089fd3649a4153265b9bdf0b')

package() {
  cd "$srcdir/kflash.py-$pkgver"
  python setup.py install --root="$pkgdir/" --optimize=1
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

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