mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
desktop/openbox: Updated for version 3.5.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
e7cf4e0321
commit
1346ee23de
3 changed files with 13 additions and 9 deletions
|
@ -28,3 +28,5 @@ autostart file to be used.
|
|||
If you do not plan on using a session manager with Openbox you can
|
||||
build a smaller binary by disabling session management support. To
|
||||
do this simply configure with '--disable-session-management'.
|
||||
|
||||
imlib2 is an optional dependency.
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
# Currently maintained by Robby Workman <rw@rlworkman.net>
|
||||
|
||||
PRGNAM=openbox
|
||||
VERSION=${VERSION:-3.5.0}
|
||||
VERSION=${VERSION:-3.5.2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -83,10 +83,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
@ -97,16 +97,18 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--enable-startup-notification \
|
||||
--enable-static=no \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--host=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
# Add xinitrc.openbox so that openbox will show up as an option in xwmconfig
|
||||
install -D -m 0755 $CWD/xinitrc.openbox $PKG/etc/X11/xinit/xinitrc.openbox
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="openbox"
|
||||
VERSION="3.5.0"
|
||||
VERSION="3.5.2"
|
||||
HOMEPAGE="http://openbox.org/"
|
||||
DOWNLOAD="http://openbox.org/dist/openbox/openbox-3.5.0.tar.gz"
|
||||
MD5SUM="00441b53cf14c03566c8e82643544ff9"
|
||||
DOWNLOAD="http://openbox.org/dist/openbox/openbox-3.5.2.tar.gz"
|
||||
MD5SUM="93df606606053b7e8578a5c116afb8ec"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in a new issue