diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-01-29 15:29:41 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-01-29 15:29:41 -0500 |
commit | e156b18c54682096c5d1ff52987e65c069bbea08 (patch) | |
tree | 2f41c507c86afb0d2501f82014c4a54097dd0a6a /frc-notworking | |
parent | a550dce37bbaf3d3e7666205c170144feaa3b1a0 (diff) |
shuffle things around, add smartdashboard
Diffstat (limited to 'frc-notworking')
-rw-r--r-- | frc-notworking/smartdashboard-client/PKGBUILD | 30 | ||||
-rw-r--r-- | frc-notworking/smartdashboard-client/smartdashboard.sh | 9 |
2 files changed, 39 insertions, 0 deletions
diff --git a/frc-notworking/smartdashboard-client/PKGBUILD b/frc-notworking/smartdashboard-client/PKGBUILD new file mode 100644 index 0000000..28d5b71 --- /dev/null +++ b/frc-notworking/smartdashboard-client/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=smartdashboard-client +pkgver=2012 +pkgrel=1 +pkgdesc='This is the platform independent SmartDashboard jar file.' +arch=any +url="http://firstforge.wpi.edu/sf/projects/smartdashboard" +license=unknown +groups=(frc) +depends=(java-runtime) +source=( + 'SmartDashboard2012-src-netbeans.zip::http://firstforge.wpi.edu/sf/frs/do/downloadFile/projects.smartdashboard/frs.smartdashboard_client_0_5a1.smartdashboard_client_2012/frs1360?dl=1' + smartdashboard.sh +) + +build() { + cd "$srcdir/smartdashboard2012" + ant +} + +package() { + cd "$srcdir" + + install -m644 -D SmartDashboard2012.jar "$pkgdir/usr/share/smartdashboard/SmartDashboard.jar" + install -m755 -D smartdashboard.sh "$pkgdir/usr/bin/smartdashboard" +} + +md5sums=('174b02a7e6b4e5bd6301a1afb88c5be6' + 'a278b2e86bd4d732e86ac9e084f5ec4d') diff --git a/frc-notworking/smartdashboard-client/smartdashboard.sh b/frc-notworking/smartdashboard-client/smartdashboard.sh new file mode 100644 index 0000000..4378584 --- /dev/null +++ b/frc-notworking/smartdashboard-client/smartdashboard.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +cd /usr/share/smartdashboard + +if [ "`whoami`" == Driver ]; then + java -jar SmartDashboard.jar competition +else + java -jar SmartDashboard.jar +fi |