about summary refs log tree commit diff
path: root/build-x86-images.sh.in
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2015-01-25 08:47:25 +0100
committerJuan RP <xtraeme@gmail.com>2015-01-25 08:47:25 +0100
commit371941a8f1158fcfe8ef75e3145d83c5e1551bfe (patch)
tree1d8dc1da0364222622d3a41fa0a9fb0d2e4df4d5 /build-x86-images.sh.in
parent8de43b1f994f82ce5bb104d85d328a03ee08b052 (diff)
downloadhrmpf-371941a8f1158fcfe8ef75e3145d83c5e1551bfe.tar.gz
hrmpf-371941a8f1158fcfe8ef75e3145d83c5e1551bfe.tar.xz
hrmpf-371941a8f1158fcfe8ef75e3145d83c5e1551bfe.zip
build-x86-images: generate image with cinnamon.
Diffstat (limited to 'build-x86-images.sh.in')
-rw-r--r--build-x86-images.sh.in13
1 files changed, 9 insertions, 4 deletions
diff --git a/build-x86-images.sh.in b/build-x86-images.sh.in
index 65d7dc8..3ed0aad 100644
--- a/build-x86-images.sh.in
+++ b/build-x86-images.sh.in
@@ -6,6 +6,7 @@ readonly BASE_IMG=void-live-${ARCH}-${DATE}.iso
 readonly E_IMG=void-live-${ARCH}-${DATE}-enlightenment.iso
 readonly XFCE_IMG=void-live-${ARCH}-${DATE}-xfce.iso
 readonly MATE_IMG=void-live-${ARCH}-${DATE}-mate.iso
+readonly MATE_IMG=void-live-${ARCH}-${DATE}-cinnamon.iso
 
 case "$ARCH" in
 	i686) GRUB="grub";;
@@ -13,10 +14,11 @@ case "$ARCH" in
 esac
 
 readonly BASE_PKGS="dialog $GRUB"
-readonly X_PKGS="$BASE_PKGS xorg-minimal xorg-input-drivers xorg-video-drivers lxdm setxkbmap xauth"
-readonly E_PKGS="$X_PKGS cantarell-fonts enlightenment terminology econnman udisks2 firefox"
-readonly XFCE_PKGS="$X_PKGS xfce4 cantarell-fonts firefox network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2"
-readonly MATE_PKGS="$X_PKGS mate mate-extra cantarell-fonts firefox network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2"
+readonly X_PKGS="$BASE_PKGS xorg-minimal xorg-input-drivers xorg-video-drivers lxdm setxkbmap xauth cantarell-fonts"
+readonly E_PKGS="$X_PKGS enlightenment terminology econnman udisks2 firefox"
+readonly XFCE_PKGS="$X_PKGS xfce4 firefox network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2"
+readonly MATE_PKGS="$X_PKGS mate mate-extra firefox network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2"
+readonly CINNAMON_PKGS="$X_PKGS cinnamon firefox udisks2"
 
 [ ! -x mklive.sh ] && exit 0
 
@@ -32,4 +34,7 @@ fi
 if [ ! -e $MATE_IMG ]; then
 	./mklive.sh -o $MATE_IMG -p "$MATE_PKGS"
 fi
+if [ ! -e $CINNAMON_IMG ]; then
+	./mklive.sh -o $CINNAMON_IMG -p "$CINNAMON_PKGS"
+fi