summaryrefslogtreecommitdiff
path: root/vasile
blob: e6be4507ece7dcce9b108159bf3878ed8f922479 (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
#!/usr/bin/env bash
# Say Hello to Vasile, a script to build Kogaion Linux packages in 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, app-arch/dpkg (optional for building deb packages in portage)
#

source /usr/lib/vasile/libvasile

case $1 in
	--build64)		source /usr/share/vasile/build64
					;;
	--build32)		source /usr/share/vasile/build32
					;;
	--help)			echo -e ""
					echo -e "Usage: vasile [options]"
					echo -e ""
					echo -e "Options:"
					echo -e "--build64 : build package in a clean x64 environment"
					echo -e "--build32 : build package in a clean x86 environment"
					echo -e "--help : display this help and exit"
					echo -e ""
					;;
	*)				echo -e "error: no operation specified, use --help for help"
					;;
esac

exit 0