updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / qmk-groundstation / PKGBUILD
blobdeaf12bdb7dc0f3b07244574fe6bc975a179ba97
1 # Contributor: Christian Hesse <mail@earthworm.de>
2 pkgname=qmk-groundstation
3 pkgver=1.0.1
4 pkgrel=1
5 pkgdesc="Mikrokopter Groundstation (like Kopter-Tool)"
6 arch=(x86_64)
7 url="http://www.mikrokopter.de/ucwiki/QMKGroundStation"
8 license=('GPL')
9 groups=()
10 depends=(qwt)
11 makedepends=()
12 optdepends=()
13 provides=()
14 conflicts=()
15 replaces=()
16 backup=()
17 options=()
18 install=
19 source=('http://svn.mikrokopter.de/filedetails.php?repname=Projects&path=%2FQMK-Groundstation%2FRelease%2FQMK-Groundstation-v1.0.1.tgz')
20 noextract=()
21 md5sums=(9b131ccbaebf6bfdd6c5aaf3094b0328)
23 build() {
24   cd "$srcdir/QMK-Groundstation 1.0.1/"
26   qmake suse.pro
27   sed -i "s/#include <stdio.h>/#include <stdio.h>\n#include <stdint.h>/" SerialPort/posix_qextserialport.h
28   make || return 1
29   mkdir -p $pkgdir/usr/bin/
30   install build/bin/QMK-Groundstation $pkgdir/usr/bin/
33 # vim:set ts=2 sw=2 et: