diff options
-rw-r--r-- | desktop/budgie-desktop/budgie-desktop.SlackBuild | 11 | ||||
-rw-r--r-- | desktop/budgie-desktop/budgie-desktop.info | 6 |
2 files changed, 13 insertions, 4 deletions
diff --git a/desktop/budgie-desktop/budgie-desktop.SlackBuild b/desktop/budgie-desktop/budgie-desktop.SlackBuild index 7bb1c043ac7e..65745fb77c26 100644 --- a/desktop/budgie-desktop/budgie-desktop.SlackBuild +++ b/desktop/budgie-desktop/budgie-desktop.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=budgie-desktop -VERSION=${VERSION:-10.5.3} +VERSION=${VERSION:-10.6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -70,12 +70,17 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-v$VERSION.tar.xz cd $PRGNAM-$VERSION chown -R root:root . +rm -rf subprojects/gvc/.gitlab-ci/subprojects/gvc; 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 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# correct desktop entry +sed -i 's/Comment=Budgie Background Services/Comment=budgie-desktop Background Services/' \ + src/daemon/budgie-daemon.desktop.in; + mkdir build cd build CFLAGS="$SLKCFLAGS" \ @@ -93,6 +98,10 @@ cd build DESTDIR=$PKG $NINJA install cd .. +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 + + # required by xwmconfig install -Dm755 $CWD/xinitrc.budgie $PKG/etc/X11/xinitrc/xinitrc.budgie diff --git a/desktop/budgie-desktop/budgie-desktop.info b/desktop/budgie-desktop/budgie-desktop.info index 6fb8cb247809..960c4622bba2 100644 --- a/desktop/budgie-desktop/budgie-desktop.info +++ b/desktop/budgie-desktop/budgie-desktop.info @@ -1,8 +1,8 @@ PRGNAM="budgie-desktop" -VERSION="10.5.3" +VERSION="10.6.1" HOMEPAGE="https://github.com/BuddiesOfBudgie/budgie-desktop" -DOWNLOAD="https://github.com/BuddiesOfBudgie/budgie-desktop/releases/download/v10.5.3/budgie-desktop-v10.5.3.tar.xz" -MD5SUM="d9fbf03e5ab44136cb2b0bce16580c3c" +DOWNLOAD="https://github.com/BuddiesOfBudgie/budgie-desktop/releases/download/v10.6.1/budgie-desktop-v10.6.1.tar.xz" +MD5SUM="3101ee6489a5e6999bfe0ef83e723427" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="libpeas uuid budgie-screensaver gnome-session gnome-menus mutter gnome-bluetooth" |