diff options
| author | Shokara Kou <kou@13f0.net> | 2022-05-13 12:30:04 -0400 |
|---|---|---|
| committer | Shokara Kou <kou@13f0.net> | 2022-12-10 16:12:53 -0500 |
| commit | b74014fcdfd8555d7e69104d49a785d311aebc57 (patch) | |
| tree | 9c50cad17052c3f0fb5d5c7f36bf06cc5c79982a /mandoc | |
| parent | b556b44749c09008f74138916b660dfa07dfcd8f (diff) | |
add mandoc
Diffstat (limited to 'mandoc')
| -rw-r--r-- | mandoc/.footprint | 31 | ||||
| -rw-r--r-- | mandoc/.md5sum | 1 | ||||
| -rw-r--r-- | mandoc/Pkgfile | 21 |
3 files changed, 53 insertions, 0 deletions
diff --git a/mandoc/.footprint b/mandoc/.footprint new file mode 100644 index 0000000..9d042b1 --- /dev/null +++ b/mandoc/.footprint | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | drwxr-xr-x root/root usr/ | ||
| 2 | drwxr-xr-x root/root usr/bin/ | ||
| 3 | -r-xr-xr-x root/root usr/bin/apropos | ||
| 4 | -r-xr-xr-x root/root usr/bin/demandoc | ||
| 5 | -r-xr-xr-x root/root usr/bin/man | ||
| 6 | -r-xr-xr-x root/root usr/bin/mandoc | ||
| 7 | -r-xr-xr-x root/root usr/bin/soelim | ||
| 8 | -r-xr-xr-x root/root usr/bin/whatis | ||
| 9 | drwxr-xr-x root/root usr/sbin/ | ||
| 10 | -r-xr-xr-x root/root usr/sbin/makewhatis | ||
| 11 | drwxr-xr-x root/root usr/share/ | ||
| 12 | drwxr-xr-x root/root usr/share/man/ | ||
| 13 | drwxr-xr-x root/root usr/share/man/man1/ | ||
| 14 | -r--r--r-- root/root usr/share/man/man1/apropos.1 | ||
| 15 | -r--r--r-- root/root usr/share/man/man1/demandoc.1.gz | ||
| 16 | -r--r--r-- root/root usr/share/man/man1/man.1.gz | ||
| 17 | -r--r--r-- root/root usr/share/man/man1/mandoc.1.gz | ||
| 18 | -r--r--r-- root/root usr/share/man/man1/soelim.1.gz | ||
| 19 | -r--r--r-- root/root usr/share/man/man1/whatis.1 | ||
| 20 | drwxr-xr-x root/root usr/share/man/man5/ | ||
| 21 | -r--r--r-- root/root usr/share/man/man5/man.conf.5.gz | ||
| 22 | -r--r--r-- root/root usr/share/man/man5/mandoc.db.5.gz | ||
| 23 | drwxr-xr-x root/root usr/share/man/man7/ | ||
| 24 | -r--r--r-- root/root usr/share/man/man7/eqn.7.gz | ||
| 25 | -r--r--r-- root/root usr/share/man/man7/man.7.gz | ||
| 26 | -r--r--r-- root/root usr/share/man/man7/mandoc_char.7.gz | ||
| 27 | -r--r--r-- root/root usr/share/man/man7/mdoc.7.gz | ||
| 28 | -r--r--r-- root/root usr/share/man/man7/roff.7.gz | ||
| 29 | -r--r--r-- root/root usr/share/man/man7/tbl.7.gz | ||
| 30 | drwxr-xr-x root/root usr/share/man/man8/ | ||
| 31 | -r--r--r-- root/root usr/share/man/man8/makewhatis.8.gz | ||
diff --git a/mandoc/.md5sum b/mandoc/.md5sum new file mode 100644 index 0000000..85cf7c7 --- /dev/null +++ b/mandoc/.md5sum | |||
| @@ -0,0 +1 @@ | |||
| f0adf24e8fdef5f3e332191f653e422a mandoc-1.14.6.tar.gz | |||
diff --git a/mandoc/Pkgfile b/mandoc/Pkgfile new file mode 100644 index 0000000..a230a21 --- /dev/null +++ b/mandoc/Pkgfile | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | # Description: a suite of tools compiling mdoc and man | ||
| 2 | # URL: https://mandoc.bsd.lv/ | ||
| 3 | # Maintainer: Shokara Kou, kou at 13f0 dot net | ||
| 4 | # Depends on: | ||
| 5 | |||
| 6 | name=mandoc | ||
| 7 | version=1.14.6 | ||
| 8 | release=1 | ||
| 9 | source=(https://mandoc.bsd.lv/snapshots/$name-$version.tar.gz) | ||
| 10 | |||
| 11 | build() { | ||
| 12 | cd $name-$version | ||
| 13 | |||
| 14 | sed -e 's,^PREFIX="/usr/local",PREFIX=/usr,g' \ | ||
| 15 | -e 's,^MANDIR=.*,MANDIR=${PREFIX}/share/man,' configure >tmp | ||
| 16 | mv tmp configure | ||
| 17 | chmod +x configure | ||
| 18 | |||
| 19 | ./configure | ||
| 20 | make PREFIX=/usr DESTDIR=$PKG install | ||
| 21 | } | ||
