103 lines
2.2 KiB
Bash
Executable file
103 lines
2.2 KiB
Bash
Executable file
#!/bin/sh
|
|
set -x
|
|
|
|
CWD=$(pwd)
|
|
|
|
PRGNAM=$(basename $CWD)
|
|
VERSION=5.0.1
|
|
|
|
BUILD=1
|
|
PACKAGER=cyco
|
|
ARCH=$(uname -m)
|
|
LIBSUFFIX=$(echo $ARCH | grep -o 64)
|
|
|
|
TMP=/tmp
|
|
PKG=$TMP/$PACKAGER/pkg-$PRGNAM
|
|
|
|
REPOSITORIES=/home/cycojesus/projets/packages/repositories
|
|
|
|
PREFIX=/usr
|
|
|
|
# Cleaning
|
|
( cd $TMP
|
|
rm -fr $PRGNAM-$VERSION
|
|
rm -fr $PKG
|
|
)
|
|
|
|
# Fetching sources
|
|
( cd $TMP
|
|
cd $TMP
|
|
if [ ! -e $CWD/$PRGNAM-$VERSION.tar.?z* ] ; then
|
|
( cd $CWD
|
|
wget -c http://download.racket-lang.org/installers/$VERSION/$PRGNAM/$PRGNAM-$VERSION-src-unix.tgz
|
|
)
|
|
fi
|
|
tar xvf $CWD/$PRGNAM-$VERSION-src-unix.tgz
|
|
mv plt-$VERSION $PRGNAM-$VERSION
|
|
)
|
|
|
|
# Preparation
|
|
( cd $TMP/$PRGNAM-$VERSION
|
|
chown -R root:root .
|
|
)
|
|
|
|
# Configuration
|
|
( cd $TMP/$PRGNAM-$VERSION/src
|
|
sed -i "s|lib/|lib$LIBSUFFIX/|g" Makefile.in
|
|
./configure \
|
|
--prefix=$PREFIX \
|
|
--mandir=$PREFIX/man \
|
|
--infodir=$PREFIX/info \
|
|
--libdir=$PREFIX/lib$LIBSUFFIX
|
|
# Building
|
|
make
|
|
|
|
# Installation
|
|
make install install.TAGS DESTDIR=$PKG
|
|
)
|
|
|
|
# Cleaning
|
|
( cd $PKG
|
|
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
|
|
|
find $PKG$PREFIX/man -type f -name "*.?" -exec gzip -9 {} \;
|
|
find $PKG$PREFIX/info -name "dir" -exec rm {} \;
|
|
find $PKG$PREFIX/info -type f -exec gzip -9 {} \;
|
|
|
|
chown -R root:root .
|
|
find . \
|
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
|
-exec chmod 755 {} \; -o \
|
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
|
-exec chmod 644 {} \;
|
|
)
|
|
|
|
# Packaging
|
|
( cd $PKG
|
|
mkdir install
|
|
cat <<EOF > $PKG/install/doinst.sh
|
|
cd /usr/info
|
|
for file in \$(ls *.gz | grep -v ".*\-[0-9]\+\.gz")
|
|
do
|
|
install-info \$file ./dir
|
|
done
|
|
EOF
|
|
|
|
cat <<EOF > $PKG/install/slack-desc
|
|
$PRGNAM: $PRGNAM (programming language)
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM:
|
|
$PRGNAM: http://plt-scheme.org/
|
|
$PRGNAM:
|
|
EOF
|
|
|
|
makepkg -l n -c n $TMP/$PRGNAM-$(echo $VERSION | tr -d '-')-$ARCH-$BUILD$PACKAGER.txz
|
|
)
|
|
|