contrib/fpc/Pkgfile

35 lines
909 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: Free Pascal Compiler.
# URL: http://www.freepascal.org
2007-01-20 03:21:06 +01:00
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
2006-11-19 22:26:53 +01:00
# Packager: Simone Rota, sip at varlock dot com
#
# Depends on:
2006-11-14 00:01:22 +01:00
name=fpc
version=2.0.2
release=1
source=(ftp://ftp.freepascal.org/pub/$name/dist/i386-linux-$version/$name-$version.i386-linux.tar)
build() {
2006-11-19 22:26:53 +01:00
tar xf $name-$version.i386-linux.tar
tar xf binary.i386-linux.tar
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
mkdir -p \
$PKG/usr/bin \
$PKG/etc
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
tar xfz base.i386-linux.tar.gz -C $PKG/usr
tar xfz utils.i386-linux.tar.gz -C $PKG/usr
for fpfile in units*.tar.gz
do
tar xfz $fpfile -C $PKG/usr
done
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
ln -sf /usr/lib/$name/$version/ppc386 $PKG/usr/bin/ppc386
$PKG/usr/lib/$name/$version/samplecfg $PKG/usr $PKG/etc
rm -r $PKG/usr/share/doc
sed -i 's|'$PKG/usr'|'/usr/lib/$name/$version'|g' $PKG/etc/fpc.cfg
chown -R root:root $PKG
2006-11-14 00:01:22 +01:00
}