summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mandoc/.footprint31
-rw-r--r--mandoc/.md5sum1
-rw-r--r--mandoc/Pkgfile21
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 @@
1drwxr-xr-x root/root usr/
2drwxr-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
9drwxr-xr-x root/root usr/sbin/
10-r-xr-xr-x root/root usr/sbin/makewhatis
11drwxr-xr-x root/root usr/share/
12drwxr-xr-x root/root usr/share/man/
13drwxr-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
20drwxr-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
23drwxr-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
30drwxr-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
6name=mandoc
7version=1.14.6
8release=1
9source=(https://mandoc.bsd.lv/snapshots/$name-$version.tar.gz)
10
11build() {
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}