summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 19dfcbbab5786a7818d8f122bc7eb276b74f7f60 (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
36
37
38
39
40
# Maintainer: Alexander Schmidt <zyeryi@gmail.com>

_pkgname=bullycpp
pkgname=${_pkgname}-git
pkgver=v1.0.r6.g52e5f0a
pkgrel=1
pkgdesc="A driver for the Bully Bootloader for the PIC24 and dsPIC33 series of microcontrollers."
arch=('i686' 'x86_64')
url="https://github.com/thirtythreeforty/bullycpp"
license=('GPL3')
depends=('qt5-serialport' 'qt5-base')
makedepends=('git' 'make' 'gcc')
provides=('BullyCPP')
source=("$_pkgname::git+https://github.com/thirtythreeforty/${_pkgname}.git")
md5sums=('SKIP') 

prepare() {
  mkdir -p build
}

pkgver() {
  cd "${_pkgname}"
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'

}

build() {
  cd build
  qmake PREFIX=/usr "../${_pkgname}/src/bullycpp.pro" CONFIG+=release
  make 
}

package() {
  cd build
  make PREFIX=/usr INSTALL_ROOT="$pkgdir" install
  install -D -m644 ../bullycpp/LICENSE "$pkgdir/usr/share/licenses/${_pkgname}/LICENSE"

}

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