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 | |
parent | 37c649a8b693ba65a59eab5de3c01bf212f791ad (diff) | |
download | crawl-929da1748b7549f4bcee86547e803a80dec12312.tar.gz crawl-929da1748b7549f4bcee86547e803a80dec12312.zip |
Add minimal Debian packaging
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 14 | ||||
-rwxr-xr-x | debian/rules | 13 |
4 files changed, 33 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1781863 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +crawl (0.1) unstable; urgency=low + + * First packaged release. + + -- ale <ale@incal.net> Sat, 22 Aug 2020 17:21:02 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b1bd38b --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +13 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..7188e8e --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: crawl +Section: net +Priority: extra +Maintainer: ale <ale@incal.net> +Build-Depends: debhelper (>= 11), dh-golang, golang-any (>= 1.11) +Standards-Version: 4.1.3 +XS-Go-Import-Path: git.autistici.org/ale/crawl + +Package: crawl +Architecture: any +Built-Using: ${misc:Built-Using} +Depends: ${shlib:Depends}, ${misc:Depends} +Description: Simple website crawler + Simple website crawler that generates WARC files. 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 + + |