32 lines
687 B
Bash
Executable File
32 lines
687 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
VERSION="0.2.7.git2"
|
|
|
|
source ./pika-build-config.sh
|
|
|
|
echo "$PIKA_BUILD_ARCH" > pika-build-arch
|
|
|
|
# Clone Upstream
|
|
#git clone --recurse-submodules https://github.com/nwg-piotr/nwg-look -b v"$VERSION"
|
|
git clone --recurse-submodules https://github.com/nwg-piotr/nwg-look
|
|
cp -rvf ./debian ./nwg-look/
|
|
if [[ "$PIKA_BUILD_ARCH" == "amd64-v3" ]]
|
|
then
|
|
cp -rvf ./Makefile-v3 ./nwg-look/Makefile
|
|
fi
|
|
cd ./nwg-look
|
|
|
|
# Get build deps
|
|
apt-get build-dep ./ -y
|
|
|
|
# Build package
|
|
LOGNAME=root dh_make --createorig -y -l -p nwg-look_"$VERSION" || echo "dh-make: Ignoring Last Error"
|
|
dpkg-buildpackage --no-sign
|
|
|
|
# Move the debs to output
|
|
cd ../
|
|
mkdir -p ./output
|
|
mv ./*.deb ./output/
|