mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
academic/jugglinglab: Added (create/animate juggling patterns)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
26e6c788b7
commit
dff11cd8e5
6 changed files with 93 additions and 0 deletions
3
academic/jugglinglab/README
Normal file
3
academic/jugglinglab/README
Normal file
|
@ -0,0 +1,3 @@
|
|||
Juggling Lab is an application for creating and animating juggling
|
||||
patterns. Its main goals are to help people learn juggling patterns
|
||||
and to assist in inventing new ones.
|
52
academic/jugglinglab/jugglinglab.SlackBuild
Normal file
52
academic/jugglinglab/jugglinglab.SlackBuild
Normal file
|
@ -0,0 +1,52 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Juggling Lab
|
||||
|
||||
# Petr Kletecka admin@zonglovani.info <2013>
|
||||
|
||||
PRGNAM=jugglinglab
|
||||
VERSION=${VERSION:-0.6.1}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM
|
||||
tar xvf $CWD/JugglingLab-${VERSION}_other.tar.gz
|
||||
mv JugglingLab $PRGNAM
|
||||
cd $PRGNAM
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/usr/share/jugglinglab
|
||||
cp -a * $PKG/usr/share/jugglinglab
|
||||
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
cat $CWD/jugglinglab.desktop > $PKG/usr/share/applications/jugglinglab.desktop
|
||||
|
||||
mkdir -p $PKG/usr/share/pixmaps
|
||||
cat $CWD/jugglinglab.png > $PKG/usr/share/pixmaps/jugglinglab.png
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
ln -s ../../share/$PRGNAM/README.html $PKG/usr/doc/$PRGNAM-$VERSION/
|
||||
ln -s ../../share/$PRGNAM/COPYING.txt $PKG/usr/doc/$PRGNAM-$VERSION/
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
9
academic/jugglinglab/jugglinglab.desktop
Normal file
9
academic/jugglinglab/jugglinglab.desktop
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=/usr/share/jugglinglab/JugglingLab.sh
|
||||
Icon=jugglinglab
|
||||
StartupNotify=false
|
||||
Categories=Education;
|
||||
Name=Juggling Lab
|
||||
Comment=Juggling Lab
|
10
academic/jugglinglab/jugglinglab.info
Normal file
10
academic/jugglinglab/jugglinglab.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="jugglinglab"
|
||||
VERSION="0.6.1"
|
||||
HOMEPAGE="http://jugglinglab.sourceforge.net"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/jugglinglab/JugglingLab-0.6.1_other.tar.gz"
|
||||
MD5SUM="a1272d27ece7596d12b2325463fded9e"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jdk"
|
||||
MAINTAINER="Petr Kletecka"
|
||||
EMAIL="admin@zonglovani.info"
|
BIN
academic/jugglinglab/jugglinglab.png
Normal file
BIN
academic/jugglinglab/jugglinglab.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.4 KiB |
19
academic/jugglinglab/slack-desc
Normal file
19
academic/jugglinglab/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 ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
jugglinglab: Juggling Lab (App for creating and animating juggling patterns)
|
||||
jugglinglab:
|
||||
jugglinglab: Juggling Lab is an application for creating and animating juggling
|
||||
jugglinglab: patterns. Its main goals are to help people learn juggling
|
||||
jugglinglab: patterns, and to assist in inventing new ones.
|
||||
jugglinglab:
|
||||
jugglinglab: Website: http://jugglinglab.sourceforge.net
|
||||
jugglinglab:
|
||||
jugglinglab:
|
||||
jugglinglab:
|
||||
jugglinglab:
|
Loading…
Reference in a new issue