Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Holbach <daniel.holbach@canonical.com>2016-09-13 12:52:54 +0300
committerAnthony Fok <foka@debian.org>2016-09-16 19:08:10 +0300
commit44bf76d0f28cc88a1dc185d1c587e0977652edf2 (patch)
treea51e6563c08640e3c5c1e1db9c0ed5e439e6f244 /snapcraft.yaml
parent742911146a24a0c39e4dcc516583fe5ed5567fa2 (diff)
Add snapcraft.yaml file
Diffstat (limited to 'snapcraft.yaml')
-rw-r--r--snapcraft.yaml22
1 files changed, 22 insertions, 0 deletions
diff --git a/snapcraft.yaml b/snapcraft.yaml
new file mode 100644
index 000000000..b26de9c65
--- /dev/null
+++ b/snapcraft.yaml
@@ -0,0 +1,22 @@
+name: hugo
+version: "v0.17-DEV"
+summary: Fast and Flexible Static Site Generator
+description: |
+ Hugo is a static HTML and CSS website generator written in Go. It is
+ optimized for speed, easy use and configurability. Hugo takes a directory
+ with content and templates and renders them into a full HTML website.
+confinement: strict
+grade: devel # use "stable" to assert the snap quality
+
+apps:
+ hugo:
+ command: bin/hugo
+ plugs: [home]
+
+parts:
+ hugo:
+ source: .
+ plugin: go
+ go-importpath: "github.com/spf13/hugo"
+ build-packages:
+ - git