development/ndesk-dbus: Added to 12.1 repository
This commit is contained in:
parent
753b7583ed
commit
a8322b86d6
|
@ -0,0 +1,5 @@
|
|||
ndesk-dbus is a C# implementation of D-Bus. It's often referred to
|
||||
as dbus-sharp, or "managed D-Bus" to avoid confusion with existing
|
||||
bindings (which wrap libdbus).
|
||||
|
||||
Requires Mono, available at SlackBuilds.org
|
|
@ -0,0 +1,53 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for ndesk-dbus (DBusSharp)
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
set -eu
|
||||
|
||||
PRGNAM=ndesk-dbus
|
||||
VERSION=0.6.1a
|
||||
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"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
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" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var/lib \
|
||||
--mandir=/usr/man \
|
||||
--disable-static
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION $PKG/install
|
||||
cp -a AUTHORS NEWS COPYING README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
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="ndesk-dbus"
|
||||
VERSION="0.6.1a"
|
||||
HOMEPAGE="http://www.ndesk.org/DBusSharp"
|
||||
DOWNLOAD="http://www.ndesk.org/archive/ndesk-dbus/ndesk-dbus-0.6.1a.tar.gz"
|
||||
MD5SUM="865900c2edb221ffff0c8fe7db210a67"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="David Somero"
|
|
@ -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------------------------------------------------------|
|
||||
ndesk-dbus: ndesk-dbus (a C# implementation of D-Bus)
|
||||
ndesk-dbus:
|
||||
ndesk-dbus: ndesk-dbus is a C# implementation of D-Bus. It's often referred to
|
||||
ndesk-dbus: as dbus-sharp, or "managed D-Bus" to avoid confusion with existing
|
||||
ndesk-dbus: bindings (which wrap libdbus).
|
||||
ndesk-dbus:
|
||||
ndesk-dbus:
|
||||
ndesk-dbus:
|
||||
ndesk-dbus:
|
||||
ndesk-dbus:
|
||||
ndesk-dbus:
|
Loading…
Reference in New Issue