From e980d0017b4edf9a43aa8b4368dd56344d6fad83 Mon Sep 17 00:00:00 2001 From: Erik Hanson Date: Fri, 29 May 2015 05:14:13 +0700 Subject: audio/paman: Added (PulseAudio Manager). Signed-off-by: Willy Sudiarto Raharjo --- audio/paman/README | 1 + audio/paman/doinst.sh | 3 ++ audio/paman/paman.SlackBuild | 86 ++++++++++++++++++++++++++++++++++++++++++++ audio/paman/paman.info | 10 ++++++ audio/paman/slack-desc | 19 ++++++++++ 5 files changed, 119 insertions(+) create mode 100644 audio/paman/README create mode 100644 audio/paman/doinst.sh create mode 100644 audio/paman/paman.SlackBuild create mode 100644 audio/paman/paman.info create mode 100644 audio/paman/slack-desc diff --git a/audio/paman/README b/audio/paman/README new file mode 100644 index 0000000000..58fde5d90e --- /dev/null +++ b/audio/paman/README @@ -0,0 +1 @@ +A simple GTK frontend for PulseAudio. diff --git a/audio/paman/doinst.sh b/audio/paman/doinst.sh new file mode 100644 index 0000000000..3857649f50 --- /dev/null +++ b/audio/paman/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications &> /dev/null +fi diff --git a/audio/paman/paman.SlackBuild b/audio/paman/paman.SlackBuild new file mode 100644 index 0000000000..bacd529713 --- /dev/null +++ b/audio/paman/paman.SlackBuild @@ -0,0 +1,86 @@ +#!/bin/sh +# +# Slackware build script for paman +# +# Copyright 2015 Erik W. Hanson, Minneapolis, MN, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=paman +VERSION=${VERSION:-0.9.4} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -ue + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ChangeLog LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION +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} diff --git a/audio/paman/paman.info b/audio/paman/paman.info new file mode 100644 index 0000000000..c73230af1f --- /dev/null +++ b/audio/paman/paman.info @@ -0,0 +1,10 @@ +PRGNAM="paman" +VERSION="0.9.4" +HOMEPAGE="http://0pointer.de/lennart/projects/paman/" +DOWNLOAD="http://0pointer.de/lennart/projects/paman/paman-0.9.4.tar.gz" +MD5SUM="4a77b129b0de8d261f2794ce3db518cc" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="pulseaudio libglademm" +MAINTAINER="Erik Hanson" +EMAIL="erik@slackbuilds.org" diff --git a/audio/paman/slack-desc b/audio/paman/slack-desc new file mode 100644 index 0000000000..2289cdfd67 --- /dev/null +++ b/audio/paman/slack-desc @@ -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------------------------------------------------------| +paman: paman (PulseAudio Manager) +paman: +paman: A simple GTK frontend for PulseAudio. +paman: +paman: +paman: +paman: +paman: +paman: +paman: +paman: -- cgit v1.2.3-80-g2a13