From d19082cdb640a950e3c10628a5a2f3e7ba44c9e0 Mon Sep 17 00:00:00 2001 From: Luis Henrique Date: Tue, 11 May 2010 23:57:31 -0500 Subject: development/bakefile: Added (a makefile generator). --- development/bakefile/README | 9 ++++ development/bakefile/bakefile.SlackBuild | 77 ++++++++++++++++++++++++++++++++ development/bakefile/bakefile.info | 10 +++++ development/bakefile/slack-desc | 19 ++++++++ 4 files changed, 115 insertions(+) create mode 100644 development/bakefile/README create mode 100644 development/bakefile/bakefile.SlackBuild create mode 100644 development/bakefile/bakefile.info create mode 100644 development/bakefile/slack-desc diff --git a/development/bakefile/README b/development/bakefile/README new file mode 100644 index 0000000000..7c5164d201 --- /dev/null +++ b/development/bakefile/README @@ -0,0 +1,9 @@ +Bakefile is cross-platform, cross-compiler native makefiles generator. +It takes compiler-independent description of build tasks as input and +generates native makefile (autoconf's Makefile.in, Visual C++ project, +bcc makefile etc.). + +Bakefile's task is to generate native makefiles, so that people can keep +using their favorite tools. There are other cross-platform make solutions, +but they either aren't native and require the user to use unfamiliar tools +(Boost.Build) or they are too limited (qmake). diff --git a/development/bakefile/bakefile.SlackBuild b/development/bakefile/bakefile.SlackBuild new file mode 100644 index 0000000000..366698d4b7 --- /dev/null +++ b/development/bakefile/bakefile.SlackBuild @@ -0,0 +1,77 @@ +#!/bin/sh + +# Slackware build script for bakefile + +# Written by Luis Henrique + +PRGNAM=bakefile +VERSION=${VERSION:-0.2.8} +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" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +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 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --htmldir=/usr/doc/$PRGNAM-$VERSION/html \ + --enable-static=no \ + --enable-shared=yes \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING NEWS README THANKS $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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.${PKGTYPE:-tgz} diff --git a/development/bakefile/bakefile.info b/development/bakefile/bakefile.info new file mode 100644 index 0000000000..9b566e97d2 --- /dev/null +++ b/development/bakefile/bakefile.info @@ -0,0 +1,10 @@ +PRGNAM="bakefile" +VERSION="0.2.8" +HOMEPAGE="http://www.bakefile.org" +DOWNLOAD="http://downloads.sourceforge.net/bakefile/bakefile-0.2.8.tar.gz" +MD5SUM="874da5c9035514366b7723bc7657c71c" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Luis Henrique" +EMAIL="lmello.009@gmail.com" +APPROVED="rworkman" diff --git a/development/bakefile/slack-desc b/development/bakefile/slack-desc new file mode 100644 index 0000000000..1834436bde --- /dev/null +++ b/development/bakefile/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +bakefile: bakefile (Makefile generator) +bakefile: +bakefile: Bakefile is cross-platform, cross-compiler native makefiles +bakefile: generator. It takes compiler-independent description of build tasks +bakefile: as input and generates native makefile (autoconf's Makefile.in, +bakefile: Visual C++ project, bcc makefile etc.). +bakefile: +bakefile: Homepage: http://www.bakefile.org +bakefile: +bakefile: +bakefile: -- cgit v1.2.3