desktop/zenity: Updated for version 2.24.1
This commit is contained in:
parent
28f8c3fc78
commit
d566c753fc
|
@ -2,4 +2,4 @@ Zenity is a tool that allows you to display Gtk+ dialog boxes from
|
|||
the command line and through shell scripts. It is similar to
|
||||
gdialog, but is intended to be saner.
|
||||
|
||||
This requires libgnomecanvas, gnome-doc-utils, and libnotify.
|
||||
This requires libgnomecanvas and libnotify.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler-------------------------------------------------------|
|
||||
zenity: zenity
|
||||
zenity: zenity (display gtk dialog boxes from cli)
|
||||
zenity:
|
||||
zenity: Zenity is a tool that allows you to display Gtk+ dialog boxes from
|
||||
zenity: the command line and through shell scripts. It is similar to
|
||||
|
|
|
@ -15,10 +15,13 @@ 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
|
||||
|
@ -40,6 +43,7 @@ CFLAGS="$SLKCFLAGS" \
|
|||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
|
@ -65,4 +69,4 @@ 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
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -3,6 +3,8 @@ VERSION="2.24.1"
|
|||
HOMEPAGE="http://live.gnome.org/Zenity"
|
||||
DOWNLOAD="http://ftp.gnome.org/pub/GNOME/sources/zenity/2.24/zenity-2.24.1.tar.bz2"
|
||||
MD5SUM="a7ade5ff47716f4328d5e0547596dfb6"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Larry Hajali"
|
||||
EMAIL="larryhaja[at]gmail[dot]com"
|
||||
APPROVED="rworkman"
|
||||
|
|
Loading…
Reference in New Issue