mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
desktop/pclock: Added to 12.2 repository
This commit is contained in:
parent
420849783c
commit
f1e9ac521a
4 changed files with 104 additions and 0 deletions
5
desktop/pclock/README
Normal file
5
desktop/pclock/README
Normal file
|
@ -0,0 +1,5 @@
|
|||
pclock is Window Maker analog clock dockable application
|
||||
|
||||
pclock is analog clock program designed primarily to run under the
|
||||
Window Maker window manager. Any 64x64 pixmap may be used as a
|
||||
background, including tiles.
|
72
desktop/pclock/pclock.SlackBuild
Normal file
72
desktop/pclock/pclock.SlackBuild
Normal file
|
@ -0,0 +1,72 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for pclock
|
||||
# Written by Cezary M. Kruk (c.kruk@bigfoot.com)
|
||||
#
|
||||
# Modified by the SlackBuilds.org project.
|
||||
|
||||
PRGNAM=pclock
|
||||
VERSION=${VERSION:-0.13.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"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
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 .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
make \
|
||||
DESTDIR=$PKG \
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
LIBDIR="-L/usr/X11R6/lib$LIBDIRSUFFIX"
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
cp -a src/pclock $PKG/usr/bin
|
||||
mkdir -p $PKG/usr/share/pixmaps/pclock
|
||||
cp -a XPM/* $PKG/usr/share/pixmaps/pclock
|
||||
|
||||
( 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 CHANGES COPYING CREDITS INSTALL README TODO \
|
||||
$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
desktop/pclock/pclock.info
Normal file
8
desktop/pclock/pclock.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="pclock"
|
||||
VERSION="0.13.1"
|
||||
HOMEPAGE="http://dockapps.org/file.php/id/7"
|
||||
DOWNLOAD="http://dockapps.org/download.php/id/12/pclock-0.13.1.tgz"
|
||||
MD5SUM="c700933e3ec53beed738c5167fc255c1"
|
||||
MAINTAINER="Cezary M. Kruk"
|
||||
EMAIL="c.kruk@bigfoot.com"
|
||||
APPROVED="dsomero"
|
19
desktop/pclock/slack-desc
Normal file
19
desktop/pclock/slack-desc
Normal file
|
@ -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------------------------------------------------------|
|
||||
pclock: pclock (Window Maker analog clock dockable application)
|
||||
pclock:
|
||||
pclock: pclock is analog clock program designed primarily to run under the
|
||||
pclock: Window Maker window manager. Any 64x64 pixmap may be used as a
|
||||
pclock: background, including tiles.
|
||||
pclock:
|
||||
pclock:
|
||||
pclock:
|
||||
pclock:
|
||||
pclock:
|
||||
pclock:
|
Loading…
Reference in a new issue