-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small fixes for building the package
- Loading branch information
Showing
3 changed files
with
15 additions
and
2 deletions.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
gardenlinux-update (0.1) UNRELEASED; urgency=medium | ||
|
||
* Initial release. (Closes: #XXXXXX) | ||
|
||
-- root <root@5b78a73fbe3e> Tue, 12 Nov 2024 07:43:47 +0000 |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ Source: gardenlinux-update | |
Section: os | ||
Priority: optional | ||
Maintainer: Garden Linux Builder <[email protected]> | ||
Build-Depends: debhelper-compat (= 13), golang | ||
Build-Depends: debhelper-compat (= 13), golang-any, dh-exec, dh-golang | ||
Standards-Version: 4.5.1 | ||
|
||
Package: gardenlinux-update | ||
|
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 |
---|---|---|
@@ -1,6 +1,14 @@ | ||
#!/usr/bin/make -f | ||
|
||
include /usr/share/dpkg/default.mk | ||
export DH_GOPKG := gardenlinux-update | ||
|
||
%: | ||
dh $@ | ||
dh $@ --builddirectory=_build --buildsystem=golang --with=golang | ||
|
||
override_dh_auto_install: | ||
dh_auto_install -- --no-source | ||
|
||
override_dh_auto_test:: | ||
|
||
override_dh_dwz: |