mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
75 lines
2.5 KiB
Bash
75 lines
2.5 KiB
Bash
# $Id$
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Valeriy Lyasotskiy <onestep@ukr.net>
|
|
# Contributor: Jan Willemson <janwil@hot.ee>
|
|
# Contributor: Hugo Ideler <hugoideler@dse.nl>
|
|
# Contributor: BlackIkeEagle <ike DOT devolder AT gmail DOT com>
|
|
# Original PKGBUILD: Andre Naumann <anaumann@SPARCed.org>
|
|
# See http://bbs.archlinux.org/viewtopic.php?t=9318&highlight=fpc
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - link ppcarm to /usr/bin
|
|
# - build for armhf on v6/v7
|
|
|
|
pkgname=fpc
|
|
pkgver=3.0.0
|
|
_gdbver=7.10
|
|
pkgrel=1.1
|
|
pkgdesc="The Free Pascal Compiler is a Turbo Pascal 7.0 and Delphi compatible 32bit Pascal Compiler. It comes with fully TP 7.0 compatible run-time library."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.freepascal.org/"
|
|
license=('GPL' 'LGPL' 'custom')
|
|
backup=("etc/fpc.cfg")
|
|
depends=(ncurses zlib expat)
|
|
makedepends=(fpc)
|
|
options=(zipman staticlibs)
|
|
source=(ftp://ftp.freepascal.org/pub/fpc/dist/$pkgver/source/fpcbuild-$pkgver.tar.gz
|
|
http://ftp.gnu.org/gnu/gdb/gdb-${_gdbver}.tar.xz
|
|
fpc-gdb.patch)
|
|
md5sums=('bb7d17ef5c7c007466368262c0779cb7'
|
|
'2a35bac41fa8e10bf04f3a0dd7f7f363'
|
|
'1e45ece6b5d4ee60b860e75926b4122d')
|
|
|
|
build() {
|
|
cd ${srcdir}/gdb-${_gdbver}
|
|
# ./configure --prefix=/usr --disable-nls --without-python --disable-werror --disable-tui
|
|
# make
|
|
# make -C gdb libgdb.a
|
|
# cp libdecnumber/libdecnumber.a gdb/
|
|
|
|
cd ${srcdir}/fpcbuild-$pkgver
|
|
# patch -p1 <$srcdir/fpc-gdb.patch
|
|
export GDBLIBDIR=${srcdir}/gdb-${_gdbver}/gdb
|
|
export LIBGDBFILE=$GDBLIBDIR/libgdb.a
|
|
[[ $CARCH == "armv7h" || $CARCH == "armv6h" ]] && EXTRA="OPT=-dFPC_ARMHF"
|
|
pushd fpcsrc/compiler
|
|
fpcmake -Tall
|
|
popd
|
|
make build NOGDB=1 ${EXTRA}
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/fpcbuild-$pkgver
|
|
|
|
export HOME=$srcdir
|
|
|
|
make -j1 PREFIX=${pkgdir}/usr install
|
|
|
|
export PATH=$pkgdir/usr/bin:$PATH
|
|
|
|
install -Dm0644 fpcsrc/rtl/COPYING.FPC ${pkgdir}/usr/share/licenses/${pkgname}/COPYING.FPC
|
|
|
|
[ "$CARCH" = "i686" ] && ln -s /usr/lib/fpc/${pkgver}/ppc386 ${pkgdir}/usr/bin/
|
|
[ "$CARCH" = "x86_64" ] && ln -s /usr/lib/fpc/${pkgver}/ppcx64 ${pkgdir}/usr/bin/
|
|
[ "$CARCH" = "arm" -o "$CARCH" = "armv6h" -o "$CARCH" = "armv7h" ] && ln -s /usr/lib/fpc/${pkgver}/ppcarm ${pkgdir}/usr/bin/
|
|
|
|
mkdir -p ${pkgdir}/etc
|
|
${pkgdir}/usr/lib/fpc/${pkgver}/samplecfg $pkgdir/usr/lib/fpc/${pkgver} ${pkgdir}/etc
|
|
|
|
# use -fPIC by default
|
|
echo -e "#ifdef cpux86_64\n# for x86_64 use -fPIC by default\n-Cg\n#endif" >> "$pkgdir/etc/fpc.cfg"
|
|
|
|
mv $pkgdir/usr/man $pkgdir/usr/share/
|
|
|
|
find $pkgdir/etc/ -type f -exec sed -i "s|$pkgdir||g" {} \;
|
|
}
|