diff --git a/main.sh b/main.sh index d80ca48..9270df6 100755 --- a/main.sh +++ b/main.sh @@ -2,25 +2,25 @@ set -e -. ./pika-build-config.sh +VERSION="0.3.3" + +source ./pika-build-config.sh echo "$PIKA_BUILD_ARCH" > pika-build-arch -VERSION="1.0" - # Clone Upstream -mkdir -p ./src-pkg-name -cp -rvf ./debian ./src-pkg-name/ -cd ./src-pkg-name/ +git clone --recurse-submodules https://github.com/hyprwm/aquamarine -b v"$VERSION" +cp -rvf ./debian ./aquamarine/ +cd ./aquamarine # Get build deps -LOGNAME=root dh_make --createorig -y -l -p src-pkg-name_"$VERSION" || echo "dh-make: Ignoring Last Error" apt-get build-dep ./ -y # Build package +LOGNAME=root dh_make --createorig -y -l -p aquamarine_"$VERSION" || echo "dh-make: Ignoring Last Error" dpkg-buildpackage --no-sign # Move the debs to output cd ../ mkdir -p ./output -mv ./*.deb ./output/ +mv ./*.deb ./output/ \ No newline at end of file