summaryrefslogtreecommitdiff
path: root/frc-notworking/smartdashboard-client
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2012-01-29 19:25:16 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2012-01-29 19:25:16 -0500
commitf99d7432279b9d75e155d4d1240f32833e80108f (patch)
treefd4beec4ec317f5b05e3a5682b6409357de216cb /frc-notworking/smartdashboard-client
parent6e4966a0d6e539205edd0832162c5218dca535d6 (diff)
mv frc-{bin,libre}/smartdashboard-client
Diffstat (limited to 'frc-notworking/smartdashboard-client')
-rw-r--r--frc-notworking/smartdashboard-client/PKGBUILD30
-rw-r--r--frc-notworking/smartdashboard-client/smartdashboard.sh9
2 files changed, 0 insertions, 39 deletions
diff --git a/frc-notworking/smartdashboard-client/PKGBUILD b/frc-notworking/smartdashboard-client/PKGBUILD
deleted file mode 100644
index 28d5b71..0000000
--- a/frc-notworking/smartdashboard-client/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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
deleted file mode 100644
index 4378584..0000000
--- a/frc-notworking/smartdashboard-client/smartdashboard.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-cd /usr/share/smartdashboard
-
-if [ "`whoami`" == Driver ]; then
- java -jar SmartDashboard.jar competition
-else
- java -jar SmartDashboard.jar
-fi