# debs
This was an attempt to build deb packages for Go programs.
References:
+ [Debian Go Packaging](https://go-team.pages.debian.net/packaging.html)
+ [golang-sourcehut-sircmpwn-getopt package](https://salsa.debian.org/go-team/packages/golang-sourcehut-sircmpwn-getopt) as a demo
+ [golang-github-mattn-go-runewidth package](https://salsa.debian.org/go-team/packages/golang-github-mattn-go-runewidth) as another demo
+ [Pragmatic Debian Packaging](golang-github-mattn-go-runewidth), a blog post by Vincent Bernat
+ ...and the examples accompanying that blog post [here](https://github.com/vincentbernat/pragmatic-debian-packages)
I had hoped that it would be as simple as:
```
docker run --rm \
--mount type=bind,src=$(pwd)/src,dst=/build/src \
--mount type=bind,src=$(pwd)/pkg,dst=/build/pkg \
registry.intra.dominic-ricottone.com/debbuilder:latest \
golang-github-slymarbo-rss
```
It made an equivs folder but froze after that.
Not really sure what went wrong.