blob: bea4bebe0cbe7f5114a7e52eab698492c510d9ff (
plain) (
blame)
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: Mattias Andrée <`base64 -d`(bWF0dGlhcy5hbmRyZWU)@protonmail.com>
pkgname=python-bus
pkgver=3.1.4
pkgrel=1
pkgdesc="Python 3 module for bus"
arch=(i686 x86_64)
url="https://codeberg.org/maandree/python-bus"
license=('ISC')
depends=(bus python)
makedepends=(cython)
source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz)
sha256sums=(6cedd1d73336f839cbb0cdde4f6550f5dd61271a65224a5e738b23882b1fe5d1)
build() {
cd "$srcdir/$pkgname"
make PREFIX=/usr
}
package() {
cd "$srcdir/$pkgname"
make PREFIX=/usr DESTDIR="$pkgdir" install
}
|