-
Notifications
You must be signed in to change notification settings - Fork 290
/
Copy pathman-db.yaml
63 lines (54 loc) · 1.44 KB
/
man-db.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Generated from https://git.alpinelinux.org/aports/plain/community/man-db/APKBUILD
package:
name: man-db
version: 2.12.0
epoch: 1
description: The man command and related utilities for examining on-line help files
copyright:
- license: GPL-2.0-or-later
dependencies:
runtime:
- groff
environment:
contents:
packages:
- autoconf
- automake
- build-base
- busybox
- ca-certificates-bundle
- gdbm-dev
- gettext-dev
- groff
- libpipeline-dev
- libseccomp-dev
- zlib-dev
pipeline:
- uses: fetch
with:
expected-sha256: 415a6284a22764ad22ff0f66710d853be7790dd451cd71436e3d25c74d996a95
uri: https://download.savannah.nongnu.org/releases/man-db/man-db-${{package.version}}.tar.xz
- uses: autoconf/configure
- uses: autoconf/make
- uses: autoconf/make-install
- uses: strip
subpackages:
- name: man-db-doc
pipeline:
- uses: split/manpages
description: man-db manpages
update:
enabled: true
release-monitor:
identifier: 1882
# Test the man command, by installing the man-db-doc manpages, and running man on many of them,
# rendering them to stdout in dvi format (dumped to /dev/null), but ensuring that every
# invocation at least exits 0.
test:
environment:
contents:
packages:
- man-db-doc
pipeline:
- runs: |
find /usr/share/man/ -type f -name "*.[0-9]" | xargs -i man -Tdvi -l {} >/dev/null