graphics/lilypond: Updated for version 2.12.3.
This commit is contained in:
parent
6911339701
commit
8df6d037e5
|
@ -1,5 +1,4 @@
|
|||
LilyPond is a music typesetter. It produces beautiful sheet music using a
|
||||
description file as input.
|
||||
LilyPond is a music typesetter. It produces beautiful
|
||||
sheet music using a description file as input.
|
||||
|
||||
You will need to have FontForge and mftrace installed in order to build
|
||||
LilyPond, both of which are available at slackbuilds.org.
|
||||
This requires fontforge and mftrace.
|
||||
|
|
|
@ -3,14 +3,21 @@
|
|||
# Slackware build script for lilypond
|
||||
# Written by Kyle Guinn <elyk03@gmail.com>
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=lilypond
|
||||
VERSION=2.12.2
|
||||
ARCH=${ARCH:-i486}
|
||||
VERSION=2.12.3
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i486 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -25,8 +32,13 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
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
|
||||
|
@ -54,10 +66,7 @@ make install DESTDIR=$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
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
|
||||
rm -f $PKG/usr/info/dir
|
||||
gzip -9 $PKG/usr/info/*.info*
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="lilypond"
|
||||
VERSION="2.12.2"
|
||||
VERSION="2.12.3"
|
||||
HOMEPAGE="http://lilypond.org/web/"
|
||||
DOWNLOAD="http://download.linuxaudio.org/lilypond/sources/v2.12/lilypond-2.12.2.tar.gz"
|
||||
MD5SUM="681dfbecf8a3710d1400cf9488be716b"
|
||||
DOWNLOAD="http://download.linuxaudio.org/lilypond/sources/v2.12/lilypond-2.12.3.tar.gz"
|
||||
MD5SUM="2303bf5f2ea8d4628f33a68f016f3866"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Kyle Guinn"
|
||||
EMAIL="elyk03@gmail.com"
|
||||
APPROVED="rworkman,pprkut"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
lilypond: LilyPond (music typesetter)
|
||||
lilypond:
|
||||
lilypond: LilyPond is a music typesetter. It produces beautiful sheet music
|
||||
lilypond: using a description file as input.
|
||||
lilypond: LilyPond is a music typesetter. It produces beautiful
|
||||
lilypond: sheet music using a description file as input.
|
||||
lilypond:
|
||||
lilypond:
|
||||
lilypond:
|
||||
|
|
Loading…
Reference in New Issue