blob: 338fe9d6977aa65b9cebbb7bdde714b1715b03b7 (
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
43
44
45
46
47
48
49
50
51
52
53
54
|
# Maintainer: Michael Wigham <michael@wigham.net>
# Contributor: Nils Van Zuijlen <nils.van-zuijlen@mailo.com>, Manoel Brunnen <manoel.brunnen@gmail.com>
pkgname=xctu
pkgver=6.5.13
pkgrel=0
pkgdesc="Next Generation Configuration Platform for XBee/RF Solutions."
arch=('i686' 'x86_64')
url="http://www.digi.com/products/xbee-rf-solutions/xctu-software/xctu"
license=('custom')
depends=('gtk2' 'java-runtime' 'libxtst' 'alsa-lib' 'gconf' 'nss' 'libglvnd' 'libnet' 'libxt')
options=('!strip')
if [[ $CARCH == 'i686' ]]; then
_setup_file=40002880_AJ.run
md5sums=('e28c71e26accdcb4d36395e26ba19835')
elif [[ $CARCH == 'x86_64' ]]; then
_setup_file=40002881_AJ.run
md5sums=('229ab2d443eded6184ecaef50ff99913')
fi
source=("http://ftp1.digi.com/support/utilities/$_setup_file"
'launcher.sh'
'xctu.desktop'
'fix.patch')
md5sums+=('672a983dc8d23e4f6a496158d4852b99'
'955154d1675975d99f855a213cb0c3ce'
'92698e7e64cfcfbc8aae271ff904def6')
noextract=()
prepare() {
chmod u+x $_setup_file
./$_setup_file --installdir $srcdir --mode unattended --unattendedmodeui none
mv $srcdir/XCTU-NG $srcdir/$pkgname
echo $pkgver > $srcdir/$pkgname/version.txt
patch -p1 -N < $srcdir/fix.patch
}
package() {
install -d $pkgdir/opt
cp -a $srcdir/$pkgname $pkgdir/opt/$pkgname
install -Dm644 $srcdir/$pkgname/doc/License_Agreements.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
# Launcher
install -Dm755 $srcdir/launcher.sh $pkgdir/usr/bin/$pkgname
# CLI
ln -s /opt/xctu/XCTUcmd $pkgdir/usr/bin/XCTUcmd
# Desktop file
install -Dm644 $srcdir/$pkgname/icon.xpm $pkgdir/usr/share/icons/hicolor/256x256/apps/xctu.xpm
install -Dm755 $srcdir/xctu.desktop $pkgdir/usr/share/applications/xctu.desktop
install -Dm755 $srcdir/xctu.desktop $pkgdir/opt/$pkgname/XCTU.desktop
}
# vim:set ft=sh:
|