blob: 566b43167dd9a71ae6a4a6bbe9e7178de8abfe05 (
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
|
# Maintainer Stefano Lovato <stefano.lovato.1@phd.unipd.it>
pkgname=sbbhost
pkgver=0.1.r1.92322ac
pkgrel=1
pkgdesc="Application for host communication with the self-balancing-bike microcontroller."
arch=('any')
url="https://github.com/stefphd/SBBHost"
license=('MIT')
depends=('gtkmm-4.0' 'fftw')
makedepends=('git')
source=("git+https://github.com/stefphd/SBBHost.git")
md5sums=('SKIP')
pkgver() {
cd "${_pkgname}"
printf "0.1.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd SBBHost
./configure --prefix /usr
make build
}
package() {
cd SBBHost
make installer INSTALLER=$pkgdir
}
|