-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eric Wheeler
committed
Aug 14, 2024
1 parent
3ae4da9
commit f5d0427
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,19 @@ jobs: | |
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential autoconf automake libtool \ | ||
libgtk-3-dev libglib2.0-dev gettext gettext autopoint desktop-file-utils devscripts fakeroot lintian | ||
libgtk-3-dev libglib2.0-dev gettext desktop-file-utils devscripts fakeroot lintian autopoint dh-make | ||
- name: Prepare Debian Packaging | ||
run: | | ||
# Initialize debian directory structure if it doesn't exist | ||
if [ ! -d "debian" ]; then | ||
dh_make --createorig -y --single --native --packagename xnec2c_1.0 | ||
fi | ||
# Optionally modify the debian/changelog file if needed | ||
echo "xnec2c (1.0) unstable; urgency=low" > debian/changelog | ||
echo " * Initial release." >> debian/changelog | ||
echo " -- Your Name <[email protected]> $(date -R)" >> debian/changelog | ||
- name: Build the DEB package using debuild | ||
run: | | ||
|