mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
libraries/mcs: Initial import
This commit is contained in:
parent
e449475518
commit
2400742b3a
4 changed files with 83 additions and 0 deletions
4
libraries/mcs/README
Normal file
4
libraries/mcs/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
mcs is a library and set of userland tools which abstract the
|
||||
storage of configuration settings away from userland applications.
|
||||
This library is needed by audacious for example.
|
||||
|
61
libraries/mcs/mcs.SlackBuild
Normal file
61
libraries/mcs/mcs.SlackBuild
Normal file
|
@ -0,0 +1,61 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for mcs-0.4.1
|
||||
# Written by Meckafett thumpadoodle@hotmail.com
|
||||
|
||||
# Modified by the SlackBuilds.org Project.
|
||||
|
||||
# Exit on most errors
|
||||
set -e
|
||||
|
||||
PRGNAM=mcs
|
||||
VERSION=0.4.1
|
||||
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"
|
||||
fi
|
||||
|
||||
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 .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var
|
||||
# --enable-gconf \
|
||||
# --enable-kconfig
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( 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
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING README TODO GIT-Access $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.tgz
|
8
libraries/mcs/mcs.info
Normal file
8
libraries/mcs/mcs.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="mcs"
|
||||
VERSION="-0.4.1"
|
||||
HOMEPAGE="http://sacredspiral.co.uk/~nenolod/mcs/"
|
||||
DOWNLOAD="http://sacredspiral.co.uk/~nenolod/mcs/mcs-0.4.1.tgz"
|
||||
MD5SUM="d09b42e9d51ea32c6326f0bbcad86c9e"
|
||||
MAINTAINER="Meckafett"
|
||||
EMAIL="thumpadoodle@hotmail.com"
|
||||
APPROVED="BP{k}"
|
10
libraries/mcs/slack-desc
Normal file
10
libraries/mcs/slack-desc
Normal file
|
@ -0,0 +1,10 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
mcs: mcs (library to manage userland settings)
|
||||
mcs:
|
||||
mcs: mcs is a library and set of userland tools which abstract the
|
||||
mcs: storage of configuration settings away from userland applications.
|
||||
mcs:
|
||||
mcs: mcs is licenced under the BSD licence.
|
||||
mcs:
|
||||
mcs: Homepage: http://sacredspiral.co.uk/~nenolod/mcs/
|
||||
mcs:
|
Loading…
Reference in a new issue