diff options
author | Johannes Frankenau | 2016-04-01 12:26:12 +0200 |
---|---|---|
committer | Johannes Frankenau | 2016-04-01 12:26:12 +0200 |
commit | f195a86fc08cb62ce89550868e7bcbfd06e21e1e (patch) | |
tree | 632571be9dd5c08a1c74430896c6bfcc69e958df | |
download | aur-f195a86fc08cb62ce89550868e7bcbfd06e21e1e.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 18 | ||||
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | PKGBUILD | 23 | ||||
-rwxr-xr-x | scenic-view | 2 | ||||
-rw-r--r-- | scenic-view.desktop | 9 |
5 files changed, 58 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..a0e6473f1cf1 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,18 @@ +pkgbase = scenic-view + pkgdesc = A tool for analyzing the scenegraph of a JavaFX application + pkgver = 8.6.0 + pkgrel = 1 + url = http://fxexperience.com/scenic-view/ + arch = i686 + arch = x86_64 + license = GPL + depends = java-runtime + source = http://fxexperience.com/downloads/ScenicView-8.6.0.zip + source = scenic-view + source = scenic-view.desktop + sha256sums = cb62998437190fa0d52fe786594f71605673ba0983d12cd99a863d2d8c10e8aa + sha256sums = 94f63cb15a84149c2bff3e1ff2644105e0c776a8c9510f7c95c645ca11a40eed + sha256sums = fe496d029e9a748c0ac30a2cb933a939af36874c36a4e07a35de24332858a285 + +pkgname = scenic-view + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..22898f625dd0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +pkg +src +*.pkg.tar +*.pkg.tar.xz +*.zip +*.jar diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..f01668532d8f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,23 @@ +pkgname=scenic-view +pkgver=8.6.0 +pkgrel=1 +pkgdesc='A tool for analyzing the scenegraph of a JavaFX application' +arch=('i686' 'x86_64') +url='http://fxexperience.com/scenic-view/' +license=('GPL') +depends=('java-runtime') +source=("http://fxexperience.com/downloads/ScenicView-${pkgver}.zip" + 'scenic-view' + 'scenic-view.desktop') +sha256sums=('cb62998437190fa0d52fe786594f71605673ba0983d12cd99a863d2d8c10e8aa' + '94f63cb15a84149c2bff3e1ff2644105e0c776a8c9510f7c95c645ca11a40eed' + 'fe496d029e9a748c0ac30a2cb933a939af36874c36a4e07a35de24332858a285') + +package() { + cd "$srcdir" + + install -Dm644 ScenicView.jar "$pkgdir/usr/share/java/scenic-view/ScenicView.jar" + + install -Dm755 scenic-view "$pkgdir/usr/bin/scenic-view" + install -Dm644 scenic-view.desktop "$pkgdir/usr/share/applications/scenic-view.desktop" +} diff --git a/scenic-view b/scenic-view new file mode 100755 index 000000000000..16c7c11c40be --- /dev/null +++ b/scenic-view @@ -0,0 +1,2 @@ +#!/bin/sh +exec /usr/bin/java -jar '/usr/share/java/scenic-view/ScenicView.jar' "$@" diff --git a/scenic-view.desktop b/scenic-view.desktop new file mode 100644 index 000000000000..6067262ea7ce --- /dev/null +++ b/scenic-view.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Type=Application +Version=1.0 +Name=Scenic View +Comment=A tool for analyzing the scenegraph of a JavaFX application +Exec=scenic-view +Icon=scenic-view +Terminal=false +Categories=Development;Java; |