mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
development/fpc-source: Added (Free Pascal sources)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
2b387e94e9
commit
9c4425d452
4 changed files with 87 additions and 0 deletions
2
development/fpc-source/README
Normal file
2
development/fpc-source/README
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
This is a repackaging of the Free Pascal compiler's source code,
|
||||||
|
needed by Lazarus.
|
56
development/fpc-source/fpc-source.SlackBuild
Normal file
56
development/fpc-source/fpc-source.SlackBuild
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Slackware build script for the Free Pascal source code package
|
||||||
|
|
||||||
|
# Copyright 2011 Fridrich von Stauffenberg <cancellor2@gmail.com>
|
||||||
|
# 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=fpc-source
|
||||||
|
VERSION=${VERSION:-2.4.4}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
ORIG_PRGNAM=${PRGNAM%-source}
|
||||||
|
ORIG_VERSION=$VERSION.source
|
||||||
|
|
||||||
|
ARCH=noarch
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
TMP=${TMP:-/tmp/SBo}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $OUTPUT $TMP $PKG/usr/src
|
||||||
|
cd $PKG/usr/src
|
||||||
|
tar xvf $CWD/$ORIG_PRGNAM-$ORIG_VERSION.tar.gz
|
||||||
|
chown -R root:root $ORIG_PRGNAM-$VERSION
|
||||||
|
ln -sf $ORIG_PRGNAM-$VERSION $ORIG_PRGNAM
|
||||||
|
|
||||||
|
mkdir -p $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
development/fpc-source/fpc-source.info
Normal file
10
development/fpc-source/fpc-source.info
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
PRGNAM="fpc-source"
|
||||||
|
VERSION="2.4.4"
|
||||||
|
HOMEPAGE="http://www.freepascal.org"
|
||||||
|
DOWNLOAD="http://sunet.dl.sourceforge.net/project/freepascal/Source/2.4.4/fpc-2.4.4.source.tar.gz"
|
||||||
|
MD5SUM="cfd517888cb4fa2fad579be19c1d7402"
|
||||||
|
DOWNLOAD_x86_64=""
|
||||||
|
MD5SUM_x86_64=""
|
||||||
|
MAINTAINER="Fridrich von Stauffenberg"
|
||||||
|
EMAIL="cancellor2@gmail.com"
|
||||||
|
APPROVED="Niels Horn"
|
19
development/fpc-source/slack-desc
Normal file
19
development/fpc-source/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------------------------------------------------------|
|
||||||
|
fpc-source: fpc-source (Free Pascal sources)
|
||||||
|
fpc-source:
|
||||||
|
fpc-source: This is a repackaging of the Free Pascal compiler's source code,
|
||||||
|
fpc-source: needed by Lazarus.
|
||||||
|
fpc-source:
|
||||||
|
fpc-source: Homepage: http://freepascal.org
|
||||||
|
fpc-source:
|
||||||
|
fpc-source:
|
||||||
|
fpc-source:
|
||||||
|
fpc-source:
|
||||||
|
fpc-source:
|
Loading…
Reference in a new issue