Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dietpi-software-build.bash #7037

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .build/software/dietpi-software-build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,40 @@ mkdir -v /output && mv -v /tmp/*.$EXT /output
poweroff
_EOF_

##########################################
# bash-script for building unbound-package
##########################################

UNBOUND_VERSION="1.19.2-1"
DEBIAN_VERSION=$DISTRO
ARCHITECTURE=$ARCH

if [ -z "$DEBIAN_VERSION" ] || [ -z "$ARCHITECTURE" ]; then
echo "Usage: $0 <debian-version> <architecture>"
exit 1
fi

# install dependencies
G_EXEC sudo apt-get update
G_EXEC sudo apt-get install -y debhelper devscripts

# clone Unbound source
G_EXEC git clone --branch debian/$UNBOUND_VERSION --depth=1 https://salsa.debian.org/dns-team/unbound.git
G_EXEC cd unbound

# add new changelog-entry
G_EXEC dch -l "+dietpi" "Neuer DietPi Build für $DEBIAN_VERSION und $ARCHITECTURE."

# build package for specific architecture
G_EXEC dpkg-buildpackage -us -uc -b -a$ARCHITECTURE

# move package
G_EXEC mv ../*.deb ~/dietpi-packages/

##########################################
# Boot container
##########################################
systemd-nspawn -bD rootfs
[[ -f rootfs/output/${NAME}_$ARCH.$EXT ]] || Error_Exit "Failed to build package: ${NAME}_$ARCH.$EXT"
}

Loading