summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 38c84bd5b9364b77e3ed2de630935e4d8797f3b7 (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: Stephen Molloy <sdmolloy@gmail.com>
# Maintainer: Kirill A Pshenichnyi <pshcyrill@mail.ru>
# Contributors: The Tango team (info@tango-controls.org)

pkgname=tango
pkgver=9.3.4
pkgrel=1
pkgdesc="Tango Controls a toolkit for controlling any kind of hardware or software and building SCADA systems"
arch=('i686' 'x86_64')
url="http://www.tango-controls.org/"
license=('GPL3')
depends=('jre8-openjdk' 'mysql' 'doxygen' 'zeromq' 'omniorb' 'binutils')
conflicts=()
source=("tango-$pkgver.tar.gz::https://github.com/tango-controls/TangoSourceDistribution/releases/download/$pkgver/tango-$pkgver.tar.gz")
md5sums=('e43b5e1d6297e56995388f73297e90dc')


build() {
	cd "$pkgname-$pkgver"
	read -r -p  "Will you enter the mysql host, admin and password now (if not you can create the .my.cnf file yourself later) [y/n]: " yn
	if [[ "$yn" =~ ^(y|Y|yes|Yes)$ ]]
	then
		read -r -p "MySQL host: " mysql_host
		read -r -p "MySQL admin: " mysql_admin
		read -s -r -p "MySQL password: " mysql_password
		echo ''
		./configure --prefix=/usr --with-mysql-ho=$mysql_host --with-mysql-admin=$mysql_admin --with-mysql-admin-passwd=$mysql_password
	else
		./configure --prefix=/usr
	fi
	make
}

check() {
	cd "$pkgname-$pkgver"
	make -k check
}

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