mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/ecore: Added to 12.0 repository
This commit is contained in:
parent
4f469df7d6
commit
28e7c4a032
4 changed files with 84 additions and 0 deletions
7
libraries/ecore/README
Normal file
7
libraries/ecore/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
Ecore is part of Enlightenment DR17 foundation libraries.
|
||||
|
||||
Ecore is the core event abstraction layer and X abstraction layer that
|
||||
makes doing selections, Xdnd, general X stuff, and event loops,
|
||||
timeouts and idle handlers fast, optimized, and convenient.
|
||||
|
||||
Ecore is dependent upon evas package.
|
58
libraries/ecore/ecore.SlackBuild
Normal file
58
libraries/ecore/ecore.SlackBuild
Normal file
|
@ -0,0 +1,58 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Ecore
|
||||
|
||||
# Written by Aleksandar B. Samardzic <asamardzic@matf.bg.ac.yu>
|
||||
|
||||
PRGNAM=ecore
|
||||
VERSION=0.9.9.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/ecore/ecore.info
Normal file
8
libraries/ecore/ecore.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="ecore"
|
||||
VERSION="0.9.9.042"
|
||||
HOMEPAGE="http://www.enlightenment.org/"
|
||||
DOWNLOAD="http://download.enlightenment.org/snapshots/2008-01-25/ecore-0.9.9.042.tar.gz"
|
||||
MD5SUM="43d0acc60570d284ca05950df34c9a9f"
|
||||
MAINTAINER="Aleksandar B. Samardzic"
|
||||
EMAIL="asamardzic@matf.bg.ac.yu"
|
||||
APPROVED="Alan Hicks,Erik Hanson"
|
11
libraries/ecore/slack-desc
Normal file
11
libraries/ecore/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
|----- Handy ruler -----------------------------------------------|
|
||||
ecore: Ecore is one of Enlightenment DR17 foundation libraries.
|
||||
ecore:
|
||||
ecore: Ecore is is the core event abstraction layer and X abstraction
|
||||
ecore: layer that makes doing selections, Xdnd, general X stuff, and
|
||||
ecore: event loops, timeouts and idle handlers fast, optimized, and
|
||||
ecore: convenient.
|
||||
ecore:
|
||||
ecore: Ecore home page is: http://www.enlightenment.org/
|
||||
ecore:
|
||||
ecore:
|
Loading…
Reference in a new issue