desktop/xdgmenumaker: Updated for version 0.5 + new maintainer.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2015-02-28 09:59:22 +07:00 committed by Willy Sudiarto Raharjo
parent 3254302d04
commit 0330e254dc
4 changed files with 47 additions and 53 deletions

View file

@ -1,10 +1,11 @@
xdgmenumaker (application menu generator for window managers)
xdgmenumaker is a command line tool, written in python, that generates xdgmenumaker is a command line tool, written in python, that generates
application menus using xdg information, by scanning *.desktop files application menus using xdg information, by scanning *.desktop files in
in all $XDG_DATA_DIRS/applications directories. All applications are all $XDG_DATA_DIRS/applications directories. All applications are sorted
sorted according to the main categories as specified by freedesktop.org. according to the main categories as specified by freedesktop.org. The
menu entries that are generated by xdgmenumaker are localised according
to the running user locale settings.
The menu entries that are generated by xdgmenumaker are localised xdgmenumaker currently supports generating menus for fluxbox, icewm,
according to the running user locale settings. jwm, pekwm and windowmaker.
xdgmenumaker currently supports generating menus for fluxbox, icewm and
windowmaker.

View file

@ -1,18 +1,18 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. # The "handy ruler" below makes it easier to edit a package description.
# Line up the first '|' above the ':' following the base package name, and # 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. # 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 # You must make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':' except on otherwise blank lines. # customary to leave one space after the ':' except on otherwise blank lines.
|-----handy-ruler------------------------------------------------------| |-----handy-ruler------------------------------------------------------|
xdgmenumaker: xdgmenumaker (generates application menus) xdgmenumaker: xdgmenumaker (application menu generator for window managers)
xdgmenumaker: xdgmenumaker:
xdgmenumaker: xdgmenumaker is a command line tool, written in python, that xdgmenumaker: xdgmenumaker is a command line tool, written in python, that
xdgmenumaker: generates application menus using xdg information, by scanning xdgmenumaker: generates application menus using xdg information, by scanning
xdgmenumaker: *.desktop files in all $XDG_DATA_DIRS/applications directories. xdgmenumaker: *.desktop files in all $XDG_DATA_DIRS/applications directories. All
xdgmenumaker: xdgmenumaker: applications are sorted according to the main categories as specified
xdgmenumaker: xdgmenumaker currently supports generating menus for fluxbox, icewm xdgmenumaker: by freedesktop.org. The menu entries that are generated by xdgmenumaker
xdgmenumaker: and windowmaker. xdgmenumaker: are localised according to the running user locale settings.
xdgmenumaker:
xdgmenumaker:
xdgmenumaker: xdgmenumaker:
xdgmenumaker: xdgmenumaker currently supports generating menus for fluxbox, icewm,
xdgmenumaker: jwm, pekwm and windowmaker.

View file

@ -1,60 +1,53 @@
#!/bin/sh #!/bin/sh
# Slackware build script for xdgmenumaker # Slackware build script for xdgmenumaker
# Copyright 2013, Andrew Tkalia, Ukraine, Kyiv # Copyright 2013, Andrew Tkalia, Ukraine, Kyiv
# All rights reserved. # Written by B. Watson (yalhcru@gmail.com)
#
# Redistribution and use of this script, with or without modification, is # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/
# permitted provided that the following conditions are met: # for details.
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=xdgmenumaker PRGNAM=xdgmenumaker
VERSION=${VERSION:-0.4} VERSION=${VERSION:-0.5}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
# pure python, no compiled code at all
ARCH=noarch
CWD=$(pwd) CWD=$(pwd)
TMP=${TMP:-/tmp/SBo} TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp} OUTPUT=${OUTPUT:-/tmp}
ARCH=noarch
set -e set -e
rm -rf $PKG rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT mkdir -p $TMP $PKG $OUTPUT
cd $TMP cd $TMP
rm -rf $PRGNAM-$VERSION rm -rf $PRGNAM-$VERSION
tar Jxvf $CWD/$PRGNAM-$VERSION.tar.xz tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/$VERSION.tar.gz
cd $PRGNAM-$VERSION cd $PRGNAM-$VERSION
chown -R root:root . chown -R root:root .
find -L . \ find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-exec chmod 755 {} \; -o \ -o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-exec chmod 644 {} \; -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# install man pages where Slackware wants them:
sed -i 's,share/man,man,' install.sh
# I had to use the full path to xdgmenumaker to get a windowmaker
# dynamic menu to work, the man page should reflect this:
sed -i '/``xdgmenumaker -f windowmaker``/s,``,``/usr/bin/,' man/$PRGNAM.t2t
DESTDIR=$PKG ./install.sh DESTDIR=$PKG ./install.sh
gzip $PKG/usr/man/man1/$PRGNAM.1
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \ cp -a AUTHORS COPYING README $PKG/usr/doc/$PRGNAM-$VERSION
README INSTALL COPYING AUTHORS \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install mkdir -p $PKG/install

View file

@ -1,10 +1,10 @@
PRGNAM="xdgmenumaker" PRGNAM="xdgmenumaker"
VERSION="0.4" VERSION="0.5"
HOMEPAGE="http://www.salixos.org/wiki/index.php/Xdgmenumaker" HOMEPAGE="https://github.com/gapan/xdgmenumaker"
DOWNLOAD="http://salix.enialis.net/i486/14.0/source/xap/xdgmenumaker/xdgmenumaker-0.4.tar.xz" DOWNLOAD="https://github.com/gapan/xdgmenumaker/archive/0.5.tar.gz"
MD5SUM="4d5f97ac1b73c5fc642c88648d43e8b8"
DOWNLOAD_x86_64="" DOWNLOAD_x86_64=""
MD5SUM="d4fad8709022ec9b3c0034871cdea962"
MD5SUM_x86_64="" MD5SUM_x86_64=""
REQUIRES="pyxdg" REQUIRES="pyxdg txt2tags"
MAINTAINER="Andrew Tkalia" MAINTAINER="B. Watson"
EMAIL="anddt@yandex.ru" EMAIL="yalhcru@gmail.com"