diff options
author | ale <ale@incal.net> | 2020-08-23 17:16:54 +0100 |
---|---|---|
committer | ale <ale@incal.net> | 2020-08-23 17:16:54 +0100 |
commit | 929da1748b7549f4bcee86547e803a80dec12312 (patch) | |
tree | 89b312110ca8c1b575243fe6c711c7ad45d98376 /debian/rules | |
parent | 37c649a8b693ba65a59eab5de3c01bf212f791ad (diff) | |
download | crawl-929da1748b7549f4bcee86547e803a80dec12312.tar.gz crawl-929da1748b7549f4bcee86547e803a80dec12312.zip |
Add minimal Debian packaging
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..42ec02a --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +export DH_GOPKG = git.autistici.org/ale/crawl +export DH_GOLANG_EXCLUDES = vendor + +%: + dh $@ --with=golang --buildsystem=golang + +override_dh_auto_install: + dh_auto_install -- --no-source + + |