mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/Esetroot: Initial import
This commit is contained in:
parent
605420bc21
commit
028892efe6
4 changed files with 74 additions and 0 deletions
47
system/Esetroot/Esetroot.SlackBuild
Normal file
47
system/Esetroot/Esetroot.SlackBuild
Normal file
|
@ -0,0 +1,47 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Esetroot
|
||||
|
||||
# Written by Jick Nan (jick.nan@gmail.com)
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=Esetroot
|
||||
VERSION=20030422
|
||||
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 -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
make
|
||||
install -D -m 0755 Esetroot $PKG/usr/bin/Esetroot
|
||||
strip --strip-unneeded $PKG/usr/bin/Esetroot
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README
|
||||
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
system/Esetroot/Esetroot.info
Normal file
8
system/Esetroot/Esetroot.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="Esetroot"
|
||||
VERSION="20030422"
|
||||
HOMEPAGE="http://www.jnrowe.ukfsn.org/projects/esetroot.html"
|
||||
DOWNLOAD="http://www.jnrowe.ukfsn.org/data/Esetroot-20030422.tar.bz2"
|
||||
MD5SUM="8e0fbd27554f22d6a78d4a8f122e0b6e"
|
||||
MAINTAINER="Jick Nan"
|
||||
EMAIL="jick.nan@gmail.com"
|
||||
APPROVED="robw810"
|
9
system/Esetroot/README
Normal file
9
system/Esetroot/README
Normal file
|
@ -0,0 +1,9 @@
|
|||
Esetroot without all the Eterm baggage
|
||||
|
||||
Esetroot is used to set wallpaper for window which support translucency.
|
||||
It supports JPG and PNG image formats while fvwm-root does not support JPG.
|
||||
Esetroot can be used in the fvwm config file.
|
||||
|
||||
Esetroot requires the imlib2 library which is available in the "Libraries"
|
||||
category at SlackBuilds.org.
|
||||
|
10
system/Esetroot/slack-desc
Normal file
10
system/Esetroot/slack-desc
Normal file
|
@ -0,0 +1,10 @@
|
|||
Esetroot: Esetroot without all the Eterm baggage
|
||||
Esetroot:
|
||||
Esetroot: Esetroot is used to set wallpaper for window managers which support
|
||||
Esetroot: translucent windows.
|
||||
Esetroot:
|
||||
Esetroot: Esetroot supports JPG and PNG image formats while fvwm-root does
|
||||
Esetroot: not support JPG.
|
||||
Esetroot:
|
||||
Esetroot:
|
||||
Esetroot:
|
Loading…
Reference in a new issue