system/zramen: Added (Manage zram swap space).

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Hunter Ellett 2023-12-10 12:43:36 +07:00 committed by Willy Sudiarto Raharjo
parent d6c88c5cb1
commit c94976824d
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
5 changed files with 140 additions and 0 deletions

5
system/zramen/README Normal file
View File

@ -0,0 +1,5 @@
Zramen is a simple bash script that makes managing zram much easier.
This SlackBuild provides the zramen script but also a service script
compatible with sysvinit. To enable it, just mark the service as
executable and you can tweak the algorithm, size, and more that
it will use in /etc/default/zramen.

39
system/zramen/rc.zramen Normal file
View File

@ -0,0 +1,39 @@
#!/bin/sh
# Start/stop/restart zramen (manages zram swap space)
# Source options
if [ -r /etc/default/zramen ]; then
. /etc/default/zramen
fi
zramen_start() {
if [ -x /usr/bin/zramen ]; then
/usr/bin/zramen make
fi
}
zramen_stop() {
if [ -x /usr/bin/zramen ]; then
/usr/bin/zramen toss
fi
}
zramen_restart() {
zramen_stop
sleep 1
zramen_start
}
case "$1" in
'start')
zramen_start
;;
'stop')
zramen_stop
;;
'restart')
zramen_restart
;;
*)
echo "usage $0 start|stop|restart"
esac

19
system/zramen/slack-desc Normal file
View 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------------------------------------------------------|
zramen: zramen (Manage zram swap space)
zramen:
zramen: Zramen is a bash script and service (originally for runit) that makes
zramen: managing and setting zram swap space much easier. The properties of
zramen: the zram can be configured with environment variables that activate
zramen: when running "zramen make" or in /etc/default/zramen for the
zramen: provided sysvinit service.
zramen:
zramen:
zramen: https://github.com/atweiden/zramen
zramen:

View File

@ -0,0 +1,67 @@
#!/bin/bash
# Slackware build script for zramen
# Copyright 2023 Hunter Ellett <hunter2k1@disroot.org>
# 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=zramen
VERSION=${VERSION:-0.6.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
ARCH=noarch
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}"
set -e
rm -rf "$PKG"
mkdir -p "$TMP" "$PKG" "$OUTPUT"
mkdir -p "$PKG/install"
mkdir -p "$PKG/usr/doc/$PRGNAM-$VERSION"
mkdir -p "$PKG/usr/bin"
mkdir -p "$PKG/etc/rc.d"
mkdir -p "$PKG/etc/default"
cd "$PKG"
tar -xvf $CWD/$PRGNAM-$VERSION.tar.gz
install -m 755 "$PKG/$PRGNAM-$VERSION/$PRGNAM" "$PKG/usr/bin/$PRGNAM"
install -m 660 "$PKG/$PRGNAM-$VERSION/sv/$PRGNAM/conf" "$PKG/etc/default/$PRGNAM"
install -m 660 "$CWD/rc.$PRGNAM" "$PKG/etc/rc.d"
cp "$CWD/$PRGNAM.SlackBuild" "$PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild"
cp "$CWD/README" "$PKG/usr/doc/$PRGNAM-$VERSION/README"
cp "$CWD/slack-desc" "$PKG/install/slack-desc"
# Clean up
rm -rf "$PKG/$PRGNAM-$VERSION"
cd "$PKG"
/sbin/makepkg -l n -c n "$OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"

10
system/zramen/zramen.info Normal file
View File

@ -0,0 +1,10 @@
PRGNAM="zramen"
VERSION="0.6.0"
HOMEPAGE="https://github.com/atweiden/zramen"
DOWNLOAD="https://github.com/atweiden/zramen/releases/download/0.6.0/zramen-0.6.0.tar.gz"
MD5SUM="eb8057d3e4952ea78c18d5e7880d9841"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Hunter Ellett"
EMAIL="hunter2k1@disroot.org"