diff options
author | Dimitris Zlatanidis <dslackw@gmail.com> | 2024-02-12 19:49:09 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-02-12 20:43:57 +0700 |
commit | 569f232152d3f70267720060db90e296f7bf9717 (patch) | |
tree | c15beb1d56bd5089261fb49259f820be57184e6f | |
parent | 3d396584cc2c829cd048a66ddefd4c82966635d7 (diff) |
desktop/battery-notify: Added (Battery notify daemon).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | desktop/battery-notify/README | 1 | ||||
-rw-r--r-- | desktop/battery-notify/battery-notify.SlackBuild | 104 | ||||
-rw-r--r-- | desktop/battery-notify/battery-notify.info | 10 | ||||
-rw-r--r-- | desktop/battery-notify/doinst.sh | 14 | ||||
-rw-r--r-- | desktop/battery-notify/slack-desc | 19 |
5 files changed, 148 insertions, 0 deletions
diff --git a/desktop/battery-notify/README b/desktop/battery-notify/README new file mode 100644 index 000000000000..03e75de708ec --- /dev/null +++ b/desktop/battery-notify/README @@ -0,0 +1 @@ +A battery monitor and notification app with sound for Linux systems. diff --git a/desktop/battery-notify/battery-notify.SlackBuild b/desktop/battery-notify/battery-notify.SlackBuild new file mode 100644 index 000000000000..feddda6bd5b5 --- /dev/null +++ b/desktop/battery-notify/battery-notify.SlackBuild @@ -0,0 +1,104 @@ +#!/bin/bash + +# Slackware build script for battery-notify + +# Copyright 2024 Dimitris Zlatanidis Greece, Orestiada +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 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. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=battery-notify +VERSION=${VERSION:-1.3} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +elif [ "$ARCH" = "aarch64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +python3 -m build --wheel --no-isolation +python3 -m installer --destdir "$PKG" dist/*.whl + +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 + +mkdir -p $PKG/etc/config/$PRGNAM/ $PKG/etc/xdg/autostart/ \ + $PKG/usr/share/sounds/$PRGNAM/ $PKG/usr/share/pixmaps/ +install -D -m0644 config/config.toml $PKG/etc/$PRGNAM/config.toml.new +cp -a xdg/battery-daemon.desktop.sample $PKG/etc/xdg/autostart/ +cp -a data/$PRGNAM.mp3 $PKG/usr/share/sounds/$PRGNAM/ +cp -a data/$PRGNAM.png $PKG/usr/share/pixmaps/ + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a LICENSE.txt README.md CHANGELOG.md $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 +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/desktop/battery-notify/battery-notify.info b/desktop/battery-notify/battery-notify.info new file mode 100644 index 000000000000..1f16c677dadb --- /dev/null +++ b/desktop/battery-notify/battery-notify.info @@ -0,0 +1,10 @@ +PRGNAM="battery-notify" +VERSION="1.3" +HOMEPAGE="https://gitlab.com/dslackw/battery-notify" +DOWNLOAD="https://gitlab.com/dslackw/battery-notify/-/archive/1.3/battery-notify-1.3.tar.gz" +MD5SUM="8c13d4d962f2e13b14348663ca494d18" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="python3-daemon python3-psutil" +MAINTAINER="Dimitris Zlatanidis" +EMAIL="dslackw@gmail.com" diff --git a/desktop/battery-notify/doinst.sh b/desktop/battery-notify/doinst.sh new file mode 100644 index 000000000000..fda9d6aa5691 --- /dev/null +++ b/desktop/battery-notify/doinst.sh @@ -0,0 +1,14 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + rm $NEW + fi +} + +config etc/battery-notify/config.toml.new + +cmp etc/xdg/autostart/battery-daemon.desktop etc/xdg/autostart/battery-daemon.desktop.sample 2> /dev/null && \ + rm etc/xdg/autostart/battery-daemon.desktop diff --git a/desktop/battery-notify/slack-desc b/desktop/battery-notify/slack-desc new file mode 100644 index 000000000000..4096ed6cc258 --- /dev/null +++ b/desktop/battery-notify/slack-desc @@ -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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +battery-notify: battery-notify (Battery status app) +battery-notify: +battery-notify: A battery monitor and notification app with sound for Linux systems. +battery-notify: +battery-notify: +battery-notify: Homepage: https://gitlab.com/dslackw/battery-notify +battery-notify: +battery-notify: +battery-notify: +battery-notify: +battery-notify: |