You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
3.4 KiB
133 lines
3.4 KiB
#!/bin/bash |
|
# Build script for Slackware |
|
# Damien Goutte-Gattat "gouttegd" <damien.goutte-gattat at e.ujf-grenoble.fr> |
|
# |
|
# Redistribution and use of this script, with or without modifications, 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. |
|
# |
|
# Latest postgresql sourcecode is available at: |
|
# http://www.postgresql.org/ |
|
|
|
# Source package infos |
|
NAMESRC=${NAMESRC:-postgresql} |
|
VERSION=${VERSION:-8.3.3} |
|
ARCHIVE=${ARCHIVE:-$NAMESRC-$VERSION.tar.bz2} |
|
WGET=${WGET:-ftp://ftp3.fr.postgresql.org/pub/postgresql/source/v8.3.1/$ARCHIVE} |
|
|
|
# Built package infos |
|
NAMETGZ=${NAMETGZ:-postgresql} |
|
BUILD=${BUILD:-1GGD} |
|
ARCH=${ARCH:-i486} |
|
TARGET=${TARGET:-i486} |
|
|
|
# Directories |
|
TMP=${TMP:-/tmp} |
|
OUT=${OUT:-$TMP/build} |
|
PKG=${PKG:-$OUT/$NAMETGZ} |
|
CWD=$(pwd) |
|
|
|
set -e # Quit if a command returns non-zero |
|
|
|
# Sanity check |
|
if [ $UID -eq 0 ]; then |
|
echo "You should NOT run this script as ROOT!" |
|
exit 1 |
|
fi |
|
if [ ! -d $TMP ]; then |
|
echo "$TMP does not exist or is not a directory!" |
|
exit 1 |
|
fi |
|
|
|
# Compilation flags |
|
case "$ARCH" in |
|
i?86) |
|
CPUOPT="-O2 -march=$ARCH -mtune=i686" |
|
;; |
|
*) |
|
CPUOPT="-O2" |
|
;; |
|
esac |
|
|
|
# Get and verify the source archive |
|
if [ ! -r $ARCHIVE ]; then |
|
wget "$WGET" |
|
fi |
|
sha1sum -c $ARCHIVE.sha1 |
|
NAME=$(tar ft $ARCHIVE | head -1 | cut -d / -f 1) |
|
|
|
# Compile |
|
cd $TMP |
|
echo "Building $ARCHIVE..." |
|
tar xf $CWD/$ARCHIVE |
|
cd $NAME |
|
CFLAGS=$CPUOPT \ |
|
CXXFLAGS=$CPUOPT \ |
|
./configure \ |
|
--prefix=/usr \ |
|
--enable-thread-safety \ |
|
--with-docdir=/usr/doc/$NAME \ |
|
--with-python \ |
|
--with-ldap \ |
|
--with-openssl \ |
|
--with-libxml \ |
|
--with-libxslt \ |
|
--with-system-tzdata=/usr/share/zoneinfo \ |
|
--with-gnu-ld |
|
make -j 3 |
|
make install DESTDIR=$PKG |
|
|
|
# Build contribs |
|
( |
|
cd contrib |
|
make -j 3 |
|
make install DESTDIR=$PKG |
|
) |
|
|
|
# Strip binaries |
|
find $PKG | xargs file | grep "ELF 32-bit LSB" | cut -d : -f 1 | \ |
|
xargs strip --strip-unneeded 2> /dev/null |
|
|
|
# Compress man pages |
|
find $PKG/usr/man -type f -exec gzip -9 {} \; |
|
|
|
# Install the startup script |
|
install -D -m 644 $CWD/rc.postgresql $PKG/etc/rc.d/rc.postgresql.new |
|
|
|
# Install the documentation |
|
install -m 644 \ |
|
COPYRIGHT HISTORY INSTALL README doc/FAQ doc/FAQ_DEV doc/KNOWN_BUGS \ |
|
doc/MISSING_FEATURES doc/TODO \ |
|
$PKG/usr/doc/$NAME |
|
|
|
# Copy slack-desc and doinst.sh files |
|
install -D -m 644 $CWD/slack-desc $PKG/install/slack-desc |
|
install -m 755 $CWD/doinst.sh $PKG/install/doinst.sh |
|
|
|
# Package the tree |
|
cd $PKG |
|
mkdir -p $OUT |
|
PACKAGING=" |
|
chown root:root . -R |
|
/sbin/makepkg -l y -c n $OUT/$NAMETGZ-$VERSION-$ARCH-$BUILD.tgz |
|
rm -rf $PKG |
|
rm -rf $TMP/$NAME |
|
" |
|
if type -p fakeroot ; then |
|
echo "$PACKAGING" | fakeroot |
|
else |
|
su -c "$PACKAGING" |
|
fi
|
|
|