17 lines
211 B
Bash
Executable file
17 lines
211 B
Bash
Executable file
# Removing old Dir
|
|
|
|
echo "removing old build directory"
|
|
|
|
rm -rf ./build
|
|
|
|
# Building new calamares
|
|
|
|
echo "starting the build"
|
|
|
|
mkdir ./build
|
|
cp ./PKGBUILD ./build
|
|
cd ./build
|
|
makepkg -sc
|
|
|
|
|
|
echo "build done...."
|