mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
multimedia/gnupod: Added (CLI tools for working with iPods)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
636bca39cb
commit
3172d5b786
4 changed files with 117 additions and 0 deletions
7
multimedia/gnupod/README
Normal file
7
multimedia/gnupod/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
GNUpod is a collection of tools which allow you to use your iPod with
|
||||
Linux and other UNIX-like operating systems. All iPod-models are supported.
|
||||
|
||||
GNUpod requires perl-digest-sha1, perl-MP3-Info, perl-TimeDate and
|
||||
perl-Unicode-String. Optional dependencies include faac, ffmpeg,
|
||||
lame, TiMidity++, perl-Audio-FLAC-Header, perl-Date-Manip and
|
||||
perl-Ogg-Vorbis-Header-PurePerl.
|
81
multimedia/gnupod/gnupod.SlackBuild
Normal file
81
multimedia/gnupod/gnupod.SlackBuild
Normal file
|
@ -0,0 +1,81 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gnupod
|
||||
|
||||
# Written by Mark Grocock <mark@grocock.me.uk>
|
||||
|
||||
PRGNAM=gnupod
|
||||
VERSION=${VERSION:-0.99.8}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
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 -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tgz
|
||||
cd $PRGNAM-$VERSION
|
||||
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 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--infodir=/usr/info \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
rm -f $PKG/usr/info/dir
|
||||
gzip -9 $PKG/usr/info/*
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
AUTHORS BUGS CHANGES COPYING FAQ README* TODO \
|
||||
$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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
multimedia/gnupod/gnupod.info
Normal file
10
multimedia/gnupod/gnupod.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="gnupod"
|
||||
VERSION="0.99.8"
|
||||
HOMEPAGE="http://www.gnu.org/software/gnupod/"
|
||||
DOWNLOAD="http://blinkenlights.ch/gnupod-dist/stable/gnupod-0.99.8.tgz"
|
||||
MD5SUM="978c9f813e6930b780e81eb30a742ebe"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Mark Grocock"
|
||||
EMAIL="mark@grocock.me.uk"
|
||||
APPROVED="rworkman"
|
19
multimedia/gnupod/slack-desc
Normal file
19
multimedia/gnupod/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------------------------------------------------------|
|
||||
gnupod: gnupod (CLI iPod tools)
|
||||
gnupod:
|
||||
gnupod: GNUpod is a collection of tools which allow you to use your iPod with
|
||||
gnupod: Linux and other UNIX-like operating systems. All iPod models are
|
||||
gnupod: supported.
|
||||
gnupod:
|
||||
gnupod: http://www.gnu.org/software/gnupod/
|
||||
gnupod:
|
||||
gnupod:
|
||||
gnupod:
|
||||
gnupod:
|
Loading…
Reference in a new issue