diff options
author | B. Watson <yalhcru@gmail.com> | 2010-05-12 23:31:39 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:31:39 +0200 |
commit | 8c4a8b943f616b9ac217c9520d71ce6fef35fd67 (patch) | |
tree | 757117468779735e7b5c419ed505165e90499a9c /misc/heyu/heyu.SlackBuild | |
parent | a5ff76d45e5204af3a98381634e56ad91a8c2ad4 (diff) |
misc/heyu: Added to 12.2 repository
Diffstat (limited to 'misc/heyu/heyu.SlackBuild')
-rw-r--r-- | misc/heyu/heyu.SlackBuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/misc/heyu/heyu.SlackBuild b/misc/heyu/heyu.SlackBuild new file mode 100644 index 000000000000..6e2b8e2a2840 --- /dev/null +++ b/misc/heyu/heyu.SlackBuild @@ -0,0 +1,74 @@ +#!/bin/sh + +# Slackware build script for heyu + +# Written by B. Watson (yalhcru@gmail.com) + +PRGNAM=heyu +VERSION=${VERSION:-2.4.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tgz +cd $PRGNAM-$VERSION +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 {} \; + +./Configure + +# Configure script doesn't support CFLAGS, and the Makefile's CFLAGS +# include a bunch of program-specific defines, so: +sed -i 's/-g -O/'"$SLKCFLAGS"/ Makefile + +make +strip --strip-unneeded $PRGNAM + +# Makefile is non-standard, just install "manually". +# It's just one binary and some man pages. +mkdir -p $PKG/usr/bin +cp $PRGNAM $PKG/usr/bin + +mkdir -p $PKG/usr/man/man1 +for sec in 1 5; do + for page in *.$sec; do + gzip -9c < $page > $PKG/usr/man/man1/$page.gz + done +done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp README* *.txt LICENSE $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/etc/$PRGNAM +cp x10.sched.sample $PKG/etc/$PRGNAM +cp x10config.sample $PKG/etc/$PRGNAM/x10.conf.sample + +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.tgz |