summaryrefslogtreecommitdiff
path: root/vasile
blob: a4eaedc01a9de4e97d32d3ea618530055395127a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
# Say Hello to Vasile, a script to build Kogaion Linux packages && ISO images using a clean squashfs + overlayfs chroot
# Using predefined targets : kernel.target , xlibs.target , x11.target , sound.target , artwork.target
# Main author : Ghiunhan Mamut (aka V3n3RiX) @ RogentOS Development Group
# Dependencies : kernel built with squashfs +  overlayfs support
#

source /usr/lib/vasile/libvasile

case $1 in
	--build64)		source /usr/share/vasile/build64
					;;
	--build32)		source /usr/share/vasile/build32
					;;
	--iso64)		source /usr/share/vasile/iso64
					;;
	--iso32)		source /usr/share/vasile/iso32
					;;
	--help)			echo -e ""
					echo -e "Usage: vasile [options]"
					echo -e ""
					echo -e "Options:"
					echo -e "--build64 : build package/target in a clean x64 squashed core"
					echo -e "--build32 : build package/target in a clean x86 squashed core"
					echo -e "--iso64 : build x64 iso based on clean squashed core + targets"
					echo -e "--iso32 : build x86 iso based on clean squashed core + targets"
					echo -e "--help : display this help and exit"
					echo -e ""
					;;
	*)				echo -e "error: no operation specified, use --help for help"
					;;
esac

exit 0