diff options
author | B. Watson <yalhcru@gmail.com> | 2017-03-11 03:12:29 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-03-18 06:58:56 +0700 |
commit | fd27d2b6932c414351c63fa70346e94753012754 (patch) | |
tree | c69f157ae8d715f851fec0013dc2f9080ea1005b /audio | |
parent | d0577df5dd4dd7e9a377f90a9f036eb0d8f19df4 (diff) | |
download | slackbuilds-fd27d2b6932c414351c63fa70346e94753012754.tar.gz |
audio/jokosher: New maintainer, minor fixes.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/jokosher/README | 4 | ||||
-rw-r--r-- | audio/jokosher/jokosher.SlackBuild | 20 | ||||
-rw-r--r-- | audio/jokosher/jokosher.info | 4 |
3 files changed, 22 insertions, 6 deletions
diff --git a/audio/jokosher/README b/audio/jokosher/README index ca4a73f68e..18a3909dcf 100644 --- a/audio/jokosher/README +++ b/audio/jokosher/README @@ -3,3 +3,7 @@ provides a complete application for recording, editing, mixing and exporting audio, and has been specifically designed with usability in mind. The developers behind Jokosher have re-thought audio production at every level, and created something devilishly simple to use. + +Currently, jokosher can't be used with jack-audio-connection-kit. This +may change in the future: what's missing is the jack plugins from +gst0-plugins-good. diff --git a/audio/jokosher/jokosher.SlackBuild b/audio/jokosher/jokosher.SlackBuild index 9500eb109f..5f36e9192d 100644 --- a/audio/jokosher/jokosher.SlackBuild +++ b/audio/jokosher/jokosher.SlackBuild @@ -2,8 +2,11 @@ # Slackware build script for jokosher +# Formerly maintained by: # Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org +# Now maintained by B. Watson (yalhcru@gmail.com) + # Copyright 2010 Binh Nguyen <binhvng@gmail.com> # All rights reserved. # @@ -24,6 +27,11 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20170310 bkw: +# - take over maintenanace +# - i486 => i586 +# - stop spamming /usr + PRGNAM=jokosher VERSION=${VERSION:-0.11.5} BUILD=${BUILD:-1} @@ -31,7 +39,7 @@ TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -57,14 +65,18 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# 20170310 bkw: Don't let setup.py spam /usr by running +# update-mime-database and update-desktop-database. Be nice if +# there were an option to setup.py to disable it, but there's not: +sed -i 's,"update-[^"]*","true",' setup.py + python setup.py build python setup.py install --skip-build --root=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +# nothing to strip, no native code, only python. mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING* PKG-INFO README $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING PKG-INFO README $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/audio/jokosher/jokosher.info b/audio/jokosher/jokosher.info index ac30c43d45..5028db0f0a 100644 --- a/audio/jokosher/jokosher.info +++ b/audio/jokosher/jokosher.info @@ -6,5 +6,5 @@ MD5SUM="941b1fac0a93e2963afc192545caf320" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="gnonlin gst0-python pyxdg" -MAINTAINER="Ryan P.C. McQuen" -EMAIL="ryanpcmcquen@member.fsf.org" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" |