summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5e6907f57a702660ffec4c278cc6e82894033b56 (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
# Maintainer: Emeric Grange <emeric.grange@gmail.com>

pkgname=smartservogui
pkgver=0.98
pkgrel=1
pkgdesc="SmartServoGui is a fully featured Qt GUI application that helps you discover devices on available serial links, get an overview of all of their registers, and easily tweak their settings!"
arch=("i686" "x86_64")
url="https://github.com/emericg/SmartServoFramework/tree/master/gui"
license=("GPL3")
depends=("qt5-base" "qt5-svg")
makedepends=("qt5-tools")

source=("https://github.com/emericg/SmartServoFramework/archive/v${pkgver}.tar.gz")
sha256sums=('2e3dcc667e7decde7e4e7b0b45c660029930c5cc339d288b0b454838ea89e0fb')

build() {
  mkdir -p "SmartServoFramework-${pkgver}"
  cd "SmartServoFramework-${pkgver}/SmartServoGui/"
  qmake -config release PREFIX=${pkgdir}/usr/
  make
}

package() {
  cd "SmartServoFramework-${pkgver}/SmartServoGui/"
  make DESTDIR="${pkgdir}" install
}