diff options
author | Kyle Guinn <elyk03@gmail.com> | 2012-12-19 20:06:56 +0100 |
---|---|---|
committer | Matteo Bernardini <ponce@slackbuilds.org> | 2012-12-19 20:07:19 +0100 |
commit | 99ebacbeaf9ad6ce537e43e267967b7c8e36764e (patch) | |
tree | 3f8ea8dc3d280ddf4f2ac94a895d0c6ac10cd45e /graphics/lilypond/lilypond.SlackBuild | |
parent | b06272add2a5b33aab0143569bda561f3c21fdaf (diff) | |
download | slackbuilds-99ebacbeaf9ad6ce537e43e267967b7c8e36764e.tar.gz |
graphics/lilypond: Updated for version 2.16.1, added license.
cleanups
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'graphics/lilypond/lilypond.SlackBuild')
-rw-r--r-- | graphics/lilypond/lilypond.SlackBuild | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/graphics/lilypond/lilypond.SlackBuild b/graphics/lilypond/lilypond.SlackBuild index a8854cffde..55fff4ed3c 100644 --- a/graphics/lilypond/lilypond.SlackBuild +++ b/graphics/lilypond/lilypond.SlackBuild @@ -1,18 +1,37 @@ #!/bin/sh # Slackware build script for lilypond -# Written by Kyle Guinn <elyk03@gmail.com> + +# Copyright 2012 Kyle Guinn <elyk03@gmail.com>, 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=lilypond -VERSION=${VERSION:-2.16.0} +VERSION=${VERSION:-2.16.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then - case "$( uname -m )" in + case "$(uname -m)" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; + *) ARCH=$(uname -m) ;; esac fi @@ -72,6 +91,10 @@ find $PKG/usr/man -type f -exec gzip -9 {} \; rm -f $PKG/usr/info/dir gzip -9 $PKG/usr/info/*.info* +# Move the vim syntax highlighting files to where vim can find them. +mkdir -p $PKG/usr/share/vim +mv $PKG/usr/share/$PRGNAM/$VERSION/vim $PKG/usr/share/vim/vimfiles + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |