libraries/libnotify: Initial import
This commit is contained in:
parent
a897240faf
commit
c5a75a28fc
|
@ -0,0 +1,7 @@
|
|||
This is a general library for event notification. It is part of
|
||||
the Galago project, a desktop presence framework. Some uses
|
||||
include a notification plugin for gaim and amarok.
|
||||
|
||||
libnotify requires dbus and dbus-glib, both of which are available
|
||||
in the SlackBuilds.org repository.
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for libnotify
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PRGNAM=libnotify
|
||||
VERSION=0.4.3
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-2}
|
||||
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 || exit 1
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--enable-static=no \
|
||||
--enable-shared=yes \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install-strip DESTDIR=$PKG || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS ChangeLog COPYING README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
( cd $PKG/usr/doc/$PRGNAM-$VERSION ; ln -s ../../share/gtk-doc/html/libnotify html )
|
||||
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="libnotify"
|
||||
VERSION="0.4.3"
|
||||
HOMEPAGE="http://www.galago-project.org/news/index.php"
|
||||
DOWNLOAD="http://www.galago-project.org/files/releases/source/libnotify/libnotify-0.4.3.tar.bz2"
|
||||
MD5SUM="7e51228c48b50c7a01d62994249ec7f4"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="elohim,robw810"
|
|
@ -0,0 +1,9 @@
|
|||
libnotify: libnotify - a notification library
|
||||
libnotify:
|
||||
libnotify: A general library for event notification
|
||||
libnotify:
|
||||
libnotify:
|
||||
libnotify: Homepage: http://www.galago-project.org/news/index.php
|
||||
libnotify:
|
||||
libnotify:
|
||||
libnotify:
|
Loading…
Reference in New Issue