summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d61d86b3089ac424ad7f1733b53145c45a713397 (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
41
42
# Maintainer: Jake <ja.ke@posteo.de>
pkgname=script-communicator
pkgver=3_29
pkgrel=1
pkgdesc="Scriptable terminal with Serial/TCP/UDP/SPI/CAN support"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/scriptcommunicator/"
license=('GPL3')
depends=('qt5-script' 'qt5-serialport')
makedepends=('qt5-tools')

source=("http://sourceforge.net/projects/scriptcommunicator/files/Source/ScriptCommunicator_${pkgver}_source.zip" 
	"qmake.patch"
	"$pkgname.desktop")
md5sums=('b77ae0b2dfdc1a7a8625b29be55925ea'
         '126ac5abe605c069119f85d9fc0fa4c5'
         'f1b6721b942570e9f5349acbef5992b0')


prepare() {
	cd "ScriptCommunicator_${pkgver}_source"	
	patch -i "$srcdir/qmake.patch"
}

build() {
	cd "ScriptCommunicator_${pkgver}_source"
	qmake -o Makefile ScriptCommunicator.pro
	make
}


package() {
	install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
	cd "ScriptCommunicator_${pkgver}_source"
	install -Dm644 "images/main.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
	
	mkdir -p "$pkgdir/opt/$pkgname"
	install -Dm755 "build/ScriptCommunicator" "$pkgdir/opt/$pkgname/"
	mkdir -p "$pkgdir/usr/bin"
	ln -s "/opt/$pkgname/ScriptCommunicator" "$pkgdir/usr/bin/$pkgname"
	cp -r templates exampleScripts documentation "$pkgdir/opt/$pkgname/"
}