From 238548582c59294fdc265246a1ab764b9e33d3c3 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 29 Jan 2012 16:16:45 -0500 Subject: reshuffle a little more, add javacv and javacpp --- frc-bin/smartdashboard-client/PKGBUILD | 25 +++++++++++++++++++++++++ frc-bin/smartdashboard-client/smartdashboard.sh | 9 +++++++++ 2 files changed, 34 insertions(+) create mode 100644 frc-bin/smartdashboard-client/PKGBUILD create mode 100644 frc-bin/smartdashboard-client/smartdashboard.sh (limited to 'frc-bin/smartdashboard-client') diff --git a/frc-bin/smartdashboard-client/PKGBUILD b/frc-bin/smartdashboard-client/PKGBUILD new file mode 100644 index 0000000..f4ed87b --- /dev/null +++ b/frc-bin/smartdashboard-client/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Luke Shumaker + +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.jar::http://firstforge.wpi.edu/sf/frs/do/downloadFile/projects.smartdashboard/frs.smartdashboard_client_0_5a1.smartdashboard_client_2012/frs1359?dl=1' + smartdashboard.sh +) + +package() { + cd "$srcdir" + + install -m644 -D SmartDashboard2012.jar "$pkgdir/usr/share/smartdashboard/SmartDashboard.jar" + install -m755 -D smartdashboard.sh "$pkgdir/usr/bin/smartdashboard" +} + +md5sums=('4df81b4b6ff7c19547513519388f0d95' + 'a278b2e86bd4d732e86ac9e084f5ec4d') diff --git a/frc-bin/smartdashboard-client/smartdashboard.sh b/frc-bin/smartdashboard-client/smartdashboard.sh new file mode 100644 index 0000000..4378584 --- /dev/null +++ b/frc-bin/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 -- cgit v1.2.3