Add: build scripts

This commit is contained in:
silvernode 2018-03-09 09:57:04 -07:00
parent 4785576489
commit ec57881940
2 changed files with 46 additions and 0 deletions

17
templates/logen/logen.sh Executable file
View File

@ -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

29
templates/plasma/plasma-void.sh Executable file
View File

@ -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