From c94976824de27697c8d704b71c176b9b63772d2a Mon Sep 17 00:00:00 2001 From: Hunter Ellett Date: Sun, 10 Dec 2023 12:43:36 +0700 Subject: system/zramen: Added (Manage zram swap space). Signed-off-by: Willy Sudiarto Raharjo --- system/zramen/README | 5 +++ system/zramen/rc.zramen | 39 ++++++++++++++++++++++++ system/zramen/slack-desc | 19 ++++++++++++ system/zramen/zramen.SlackBuild | 67 +++++++++++++++++++++++++++++++++++++++++ system/zramen/zramen.info | 10 ++++++ 5 files changed, 140 insertions(+) create mode 100644 system/zramen/README create mode 100644 system/zramen/rc.zramen create mode 100644 system/zramen/slack-desc create mode 100644 system/zramen/zramen.SlackBuild create mode 100644 system/zramen/zramen.info (limited to 'system') diff --git a/system/zramen/README b/system/zramen/README new file mode 100644 index 0000000000000..66dfa7b306b98 --- /dev/null +++ b/system/zramen/README @@ -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. diff --git a/system/zramen/rc.zramen b/system/zramen/rc.zramen new file mode 100644 index 0000000000000..97cb5fa324c91 --- /dev/null +++ b/system/zramen/rc.zramen @@ -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 diff --git a/system/zramen/slack-desc b/system/zramen/slack-desc new file mode 100644 index 0000000000000..b5842d57ce54f --- /dev/null +++ b/system/zramen/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 ':'. + + |-----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: diff --git a/system/zramen/zramen.SlackBuild b/system/zramen/zramen.SlackBuild new file mode 100644 index 0000000000000..8df06d0eaf9ab --- /dev/null +++ b/system/zramen/zramen.SlackBuild @@ -0,0 +1,67 @@ +#!/bin/bash + +# Slackware build script for zramen + +# Copyright 2023 Hunter Ellett +# 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" diff --git a/system/zramen/zramen.info b/system/zramen/zramen.info new file mode 100644 index 0000000000000..016b745d486a4 --- /dev/null +++ b/system/zramen/zramen.info @@ -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" -- cgit v1.2.3