mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
audio/fantasia: Added (Java-based GUI frontend for LinuxSampler)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
18894ebd61
commit
73146b17ea
6 changed files with 112 additions and 0 deletions
1
audio/fantasia/README
Normal file
1
audio/fantasia/README
Normal file
|
@ -0,0 +1 @@
|
||||||
|
fantasia (Java-based GUI frontend for LinuxSampler)
|
10
audio/fantasia/doinst.sh
Normal file
10
audio/fantasia/doinst.sh
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
if [ -x /usr/bin/update-desktop-database ]; then
|
||||||
|
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||||
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||||
|
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
63
audio/fantasia/fantasia.SlackBuild
Normal file
63
audio/fantasia/fantasia.SlackBuild
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Slackware build script for fantasia
|
||||||
|
|
||||||
|
# Written by B. Watson (yalhcru@gmail.com)
|
||||||
|
|
||||||
|
PRGNAM=fantasia
|
||||||
|
VERSION=${VERSION:-0.9}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
ARCH=noarch
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
TMP=${TMP:-/tmp/SBo}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SRCNAM=Fantasia
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
|
||||||
|
# Don't really need our own "source" dir, but it makes cleanup easier.
|
||||||
|
mkdir $PRGNAM-$VERSION
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
|
||||||
|
# Jar file
|
||||||
|
mkdir -p $PKG/usr/{bin,share/$PRGNAM}
|
||||||
|
install -m0644 -oroot -groot $CWD/$SRCNAM-$VERSION.jar $PKG/usr/share/$PRGNAM
|
||||||
|
|
||||||
|
# Shell script wrapper
|
||||||
|
cat <<EOF > $PKG/usr/bin/$PRGNAM
|
||||||
|
#!/bin/sh
|
||||||
|
exec java -jar /usr/share/$PRGNAM/$SRCNAM-$VERSION.jar
|
||||||
|
EOF
|
||||||
|
chmod 0755 $PKG/usr/bin/$PRGNAM
|
||||||
|
|
||||||
|
# Stick the icon where it goes
|
||||||
|
unzip -j $CWD/$SRCNAM-$VERSION.jar \
|
||||||
|
org/jsampler/view/fantasia/res/icons/LinuxSampler-logo.png
|
||||||
|
mkdir -p $PKG/usr/share/pixmaps
|
||||||
|
install -m0644 -oroot -groot LinuxSampler-logo.png \
|
||||||
|
$PKG/usr/share/pixmaps/$PRGNAM.png
|
||||||
|
|
||||||
|
# .desktop file written by SlackBuild author
|
||||||
|
mkdir -p $PKG/usr/share/applications
|
||||||
|
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||||
|
|
||||||
|
# No real docs ship with this app, but here ya go:
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README
|
||||||
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||||
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
9
audio/fantasia/fantasia.desktop
Normal file
9
audio/fantasia/fantasia.desktop
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Name=Fantasia
|
||||||
|
Comment=LinuxSampler GUI
|
||||||
|
Exec=fantasia
|
||||||
|
Icon=fantasia
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=Audio;AudioVideo;
|
10
audio/fantasia/fantasia.info
Normal file
10
audio/fantasia/fantasia.info
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
PRGNAM="fantasia"
|
||||||
|
VERSION="0.9"
|
||||||
|
HOMEPAGE="http://www.linuxsampler.org/"
|
||||||
|
DOWNLOAD="http://downloads.sourceforge.net/project/jsampler/Fantasia/Fantasia%200.9/Fantasia-0.9.jar"
|
||||||
|
DOWNLOAD_x86_64=""
|
||||||
|
MD5SUM="55f781785224cf7fc1c5999b683f9577"
|
||||||
|
MD5SUM_x86_64=""
|
||||||
|
MAINTAINER="B. Watson"
|
||||||
|
EMAIL="yalhcru@gmail.com"
|
||||||
|
APPROVED="Niels Horn"
|
19
audio/fantasia/slack-desc
Normal file
19
audio/fantasia/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# HOW TO EDIT THIS FILE:
|
||||||
|
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||||
|
# up the first '|' above the ':' following the base package name, and the '|'
|
||||||
|
# on the right side marks the last column you can put a character in. You must
|
||||||
|
# make exactly 11 lines for the formatting to be correct. It's also
|
||||||
|
# customary to leave one space after the ':'.
|
||||||
|
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
fantasia: fantasia (Java-based GUI frontend for LinuxSampler)
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
||||||
|
fantasia:
|
Loading…
Reference in a new issue