mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
libraries/eet: Added to 12.0 repository
This commit is contained in:
parent
bc53276cd1
commit
dfe784ef55
4 changed files with 82 additions and 0 deletions
5
libraries/eet/README
Normal file
5
libraries/eet/README
Normal file
|
@ -0,0 +1,5 @@
|
|||
Eet is part of Enlightenment DR17 foundation libraries.
|
||||
|
||||
Eet is a tiny library designed to write an arbitary set of chunks of
|
||||
data to a file and optionally compress each chunk (very much like a
|
||||
zip file) and allow fast random-access reading of the file later on.
|
58
libraries/eet/eet.SlackBuild
Normal file
58
libraries/eet/eet.SlackBuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Eet
|
||||
|
||||
# Written by Aleksandar B. Samardzic <asamardzic@matf.bg.ac.yu>
|
||||
|
||||
PRGNAM=eet
|
||||
VERSION=0.9.10.042
|
||||
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
|
||||
|
||||
set -e
|
||||
|
||||
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 .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var
|
||||
|
||||
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 || true
|
||||
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-PLAIN ChangeLog INSTALL NEWS README $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/eet/eet.info
Normal file
8
libraries/eet/eet.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="eet"
|
||||
VERSION="0.9.10.042"
|
||||
HOMEPAGE="http://www.enlightenment.org/"
|
||||
DOWNLOAD="http://download.enlightenment.org/snapshots/2008-01-25/eet-0.9.10.042.tar.gz"
|
||||
MD5SUM="4bb3707b21b2aafcf1fd0850a6dd83ec"
|
||||
MAINTAINER="Aleksandar B. Samardzic"
|
||||
EMAIL="asamardzic@matf.bg.ac.yu"
|
||||
APPROVED="Alan Hicks,Erik Hanson"
|
11
libraries/eet/slack-desc
Normal file
11
libraries/eet/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
|------ Handy ruler ------------------------------------------------|
|
||||
eet: Eet is one of Enlightenment DR17 foundation libraries.
|
||||
eet:
|
||||
eet: Eet is a tiny library designed to write an arbitary set of chunks
|
||||
eet: of data to a file and optionally compress each chunk (very much
|
||||
eet: like a zip file) and allow fast random-access reading of the file
|
||||
eet: later on.
|
||||
eet:
|
||||
eet: Eet home page is: http://www.enlightenment.org/
|
||||
eet:
|
||||
eet:
|
Loading…
Reference in a new issue