libraries/libsmbios: Added to 12.0 repository
This commit is contained in:
parent
1607628d2f
commit
209640e811
|
@ -0,0 +1,9 @@
|
|||
The libsmbios project aims towards providing access to as much BIOS
|
||||
information as possible. It does this by providing a library of
|
||||
functions that can be used as well as sample binaries.
|
||||
|
||||
Please note that documentation is especially sparse in this package.
|
||||
There are no man pages, and many of the binaries included here are
|
||||
untested and perhaps dangerous to use on non-supported hardware. This
|
||||
script exists solely to satisfy a dependency for pommed (also available
|
||||
at SlackBuilds.org).
|
|
@ -0,0 +1,62 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Exit on most errors
|
||||
set -e
|
||||
|
||||
PRGNAM=libsmbios
|
||||
VERSION=0.13.10
|
||||
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 -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--bindir=/usr/sbin \
|
||||
--includedir=/usr/include \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
# These don't get included, but probably should
|
||||
cp -a include $PKG/usr
|
||||
chown -R root:root $PKG/usr/include
|
||||
find $PKG/usr/include -type f -exec chmod 0644 {} \;
|
||||
|
||||
( 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 COPYING-GPL COPYING-OSL ChangeLog INSTALL NEWS \
|
||||
README TODO doc/* $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
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="libsmbios"
|
||||
VERSION="0.13.10"
|
||||
HOMEPAGE="http://linux.dell.com/libsmbios/main/index.html"
|
||||
DOWNLOAD="http://linux.dell.com/libsmbios/download/libsmbios/libsmbios-0.13.10/libsmbios-0.13.10.tar.gz"
|
||||
MD5SUM="23faf207803e7249be7662697f8218a9"
|
||||
MAINTAINER="Alan_Hicks"
|
||||
EMAIL="alan@lizella.net"
|
||||
APPROVED="rworkman"
|
|
@ -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------------------------------------------------------|
|
||||
libsmbios: libsmbios (library of functions to access BIOS information)
|
||||
libsmbios:
|
||||
libsmbios: The libsmbios project aims towards providing access
|
||||
libsmbios: to as much BIOS information as possible. It does this
|
||||
libsmbios: by providing a library of functions that can be used
|
||||
libsmbios: as well as sample binaries.
|
||||
libsmbios:
|
||||
libsmbios:
|
||||
libsmbios:
|
||||
libsmbios:
|
||||
libsmbios:
|
Loading…
Reference in New Issue