mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/xdg-utils: Added to 12.0 repository
This commit is contained in:
parent
9ebb417efd
commit
9715c449f2
4 changed files with 77 additions and 0 deletions
5
system/xdg-utils/README
Normal file
5
system/xdg-utils/README
Normal file
|
@ -0,0 +1,5 @@
|
|||
Xdg-utils is a set of command line tools to assist applications
|
||||
with a variety of desktop integration tasks. About half of the
|
||||
tools focus on tasks commonly required during the installation of
|
||||
a desktop application and the other half focuses on integration
|
||||
with the desktop environment while the application is running.
|
19
system/xdg-utils/slack-desc
Normal file
19
system/xdg-utils/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------------------------------------------------------|
|
||||
xdg-utils: xdg-utils (command line tools that assist applications)
|
||||
xdg-utils:
|
||||
xdg-utils: Xdg-utils is a set of command line tools that assist applications
|
||||
xdg-utils: with a variety of desktop integration tasks. About half of the
|
||||
xdg-utils: tools focus on tasks commonly required during the installation of
|
||||
xdg-utils: a desktop application and the other half focuses on integration
|
||||
xdg-utils: with the desktop environment while the application is running.
|
||||
xdg-utils:
|
||||
xdg-utils:
|
||||
xdg-utils: http://portland.freedesktop.org/wiki/
|
||||
xdg-utils:
|
45
system/xdg-utils/xdg-utils.SlackBuild
Normal file
45
system/xdg-utils/xdg-utils.SlackBuild
Normal file
|
@ -0,0 +1,45 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for xdg-utils
|
||||
# Written by Erik Hanson erik@slackbuilds.org
|
||||
|
||||
PRGNAM=xdg-utils
|
||||
VERSION=1.0.2
|
||||
ARCH=${ARCH:-noarch}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tgz || exit 1
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
gzip -9 $PKG/usr/man/man1/*
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a ChangeLog LICENSE README RELEASE_NOTES 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
system/xdg-utils/xdg-utils.info
Normal file
8
system/xdg-utils/xdg-utils.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="xdg-utils"
|
||||
VERSION="1.0.2"
|
||||
HOMEPAGE="http://portland.freedesktop.org/wiki/"
|
||||
DOWNLOAD="http://portland.freedesktop.org/download/xdg-utils-1.0.2.tgz"
|
||||
MD5SUM="348a5b91dc66426505022c74a64b2940"
|
||||
MAINTAINER="Erik Hanson"
|
||||
EMAIL="erik@slackbuilds.org"
|
||||
APPROVED="rworkman"
|
Loading…
Reference in a new issue