manual/snap/snapcraft.yaml

24 lines
995 B
YAML
Raw Normal View History

2020-02-27 11:54:23 -08:00
name: lubuntu-manual # you probably want to 'snapcraft register <name>'
2020-02-27 11:37:18 -08:00
base: core18 # the base snap is the execution environment for this snap
2020-02-27 20:41:35 -08:00
version: '20.04-alpha' # just for humans, typically '1.2+git' or '1.3.2'
2020-02-27 11:37:18 -08:00
summary: Documentation for Lubuntu # 79 char long summary
description: |
This snap contains the Manual for Lubuntu which includes all of the default program as well as documentation for LXQt. See https://lubuntu.me for more info.
2020-02-27 11:37:18 -08:00
grade: devel # must be 'stable' to release into candidate/stable channels
confinement: strict # use 'strict' once you have the right plugs and slots
2020-02-27 11:37:18 -08:00
parts:
my-part:
2020-02-27 12:00:19 -08:00
source: https://phab.lubuntu.me/source/manual.git
build-packages: [python3-pip, python3-sphinx, latexmk, texlive, texlive-formats-extra, python3-sphinx-rtd-theme, python3-sphinx-bootstrap-theme]
2020-02-27 11:54:23 -08:00
plugin: make
2020-02-28 11:54:43 -08:00
make-parameters: [html]
2020-02-28 12:04:11 -08:00
artifacts: [build/html/]
apps:
lubuntu-manual:
2020-03-17 12:58:55 -07:00
command: xdg-open /snap/lubuntu-manual/x2/build/html/index.html
2020-03-17 12:58:55 -07:00