From ec57881940e9f857a99a6c86a4b62c6266f43e68 Mon Sep 17 00:00:00 2001 From: silvernode Date: Fri, 9 Mar 2018 09:57:04 -0700 Subject: [PATCH] Add: build scripts --- templates/logen/logen.sh | 17 +++++++++++++++++ templates/plasma/plasma-void.sh | 29 +++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100755 templates/logen/logen.sh create mode 100755 templates/plasma/plasma-void.sh diff --git a/templates/logen/logen.sh b/templates/logen/logen.sh new file mode 100755 index 0000000..71a2cda --- /dev/null +++ b/templates/logen/logen.sh @@ -0,0 +1,17 @@ +#!/bin/bash +echo "=========================" +echo "| LOGEN VOID |" +echo " ------------------------" +CURRENT=https://repo.voidlinux.eu/current +NONFREE=https://repo.voidlinux.eu/current/nonfree +MULTILIB=https://repo.voidlinux.eu/current/multilib + + + +./mklive.sh \ + -r ${CURRENT} \ + -r ${NONFREE} \ + -r ${MULTILIB} \ + -p "$(grep '^[^#].' logen.packages)" \ + -T "Logen Void" \ + -o logen-void-build_1-live-x86_64-xfce4-4.14.22.iso \ No newline at end of file diff --git a/templates/plasma/plasma-void.sh b/templates/plasma/plasma-void.sh new file mode 100755 index 0000000..226561f --- /dev/null +++ b/templates/plasma/plasma-void.sh @@ -0,0 +1,29 @@ +#!/bin/bash +echo "=========================" +echo "| VOID PLASMA |" +echo " ------------------------" + +# Grub Splash +SPLASH=splash.png + +# Image File Output +DATE=$(date +%Y%m%d) +FILENAME="plasma-void" +shift $((OPTIND - 1)) + +: ${ARCH:=$(uname -m)} + +CURRENT=https://repo.voidlinux.eu/current +NONFREE=https://repo.voidlinux.eu/current/nonfree +MULTILIB=https://repo.voidlinux.eu/current/multilib + +cp ${SPLASH} ../../data + +./mklive.sh \ + -a ${ARCH} \ + -r ${CURRENT} \ + -r ${NONFREE} \ + -r ${MULTILIB} \ + -p "$(grep '^[^#].' plasma.packages)" \ + -T "Plasma Void Alpha3" \ + -o ${FILENAME}-${ARCH}-live-${DATE}.iso