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-libre | |
parent | a550dce37bbaf3d3e7666205c170144feaa3b1a0 (diff) |
shuffle things around, add smartdashboard
Diffstat (limited to 'frc-libre')
-rw-r--r-- | frc-libre/smartdashboard/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/frc-libre/smartdashboard/PKGBUILD b/frc-libre/smartdashboard/PKGBUILD new file mode 100644 index 0000000..b5356b5 --- /dev/null +++ b/frc-libre/smartdashboard/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=smartdashboard +pkgver=2012 +pkgrel=1 +pkgdesc='The new smart dashboard for FRC students.' +arch=any +url="http://firstforge.wpi.edu/sf/projects/smartdashboard" +license=unknown +groups=(frc) +depends=( + smartdashboard-client + smartdashboard-extension-wpicameraextension + wpilibj-networktable-client + + junit + jcommon + jfreechart +) + +package() { + install -d "$pkgdir/usr/share/smartdashboard/lib" + cd "$pkgdir/usr/share/smartdashboard/lib" + ln -s /usr/share/wpilibj/NetworkTable_Client.jar . + ln -s /usr/share/java/jcommon.jar . + ln -s /usr/share/java/jfreechart.jar . + ln -s /usr/share/java/junit.jar . +} |