diff options
author | John Vogel <jvogel4@stny.rr.com> | 2019-06-23 23:10:00 -0400 |
---|---|---|
committer | John Vogel <jvogel4@stny.rr.com> | 2019-06-23 23:10:00 -0400 |
commit | 0b511efdeeaa2dae12e6abb39951363e6562f46a (patch) | |
tree | 1a04b9da1154f7435f240e4dd27ea0ce00140a90 /discount | |
parent | b90c407c759cda6b4441239398bdafd8826e6cc8 (diff) | |
download | contrib-0b511efdeeaa2dae12e6abb39951363e6562f46a.tar.gz contrib-0b511efdeeaa2dae12e6abb39951363e6562f46a.tar.xz |
discount: initial import, version 2.2.6
Diffstat (limited to 'discount')
-rw-r--r-- | discount/.footprint | 39 | ||||
-rw-r--r-- | discount/.signature | 5 | ||||
-rw-r--r-- | discount/Pkgfile | 19 |
3 files changed, 63 insertions, 0 deletions
diff --git a/discount/.footprint b/discount/.footprint new file mode 100644 index 000000000..788abac97 --- /dev/null +++ b/discount/.footprint @@ -0,0 +1,39 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/makepage +-rwxr-xr-x root/root usr/bin/markdown +-rwxr-xr-x root/root usr/bin/mkd2html +-rwxr-xr-x root/root usr/bin/theme +drwxr-xr-x root/root usr/include/ +-r--r--r-- root/root usr/include/mkdio.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libmarkdown.a +drwxr-xr-x root/root usr/lib/pkgconfig/ +-r--r--r-- root/root usr/lib/pkgconfig/libmarkdown.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-r--r--r-- root/root usr/share/man/man1/makepage.1.gz +-r--r--r-- root/root usr/share/man/man1/markdown.1.gz +-r--r--r-- root/root usr/share/man/man1/mkd2html.1.gz +-r--r--r-- root/root usr/share/man/man1/theme.1.gz +drwxr-xr-x root/root usr/share/man/man3/ +-r--r--r-- root/root usr/share/man/man3/markdown.3.gz +-r--r--r-- root/root usr/share/man/man3/mkd-callbacks.3.gz +-r--r--r-- root/root usr/share/man/man3/mkd-functions.3.gz +-r--r--r-- root/root usr/share/man/man3/mkd-line.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_cleanup.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_compile.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_css.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_doc_author.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_doc_date.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_doc_title.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_generatecss.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_generatehtml.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_generateline.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_in.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_line.3.gz +-rw-r--r-- root/root usr/share/man/man3/mkd_string.3.gz +drwxr-xr-x root/root usr/share/man/man7/ +-r--r--r-- root/root usr/share/man/man7/markdown.7.gz +-r--r--r-- root/root usr/share/man/man7/mkd-extensions.7.gz diff --git a/discount/.signature b/discount/.signature new file mode 100644 index 000000000..a38a21270 --- /dev/null +++ b/discount/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3+AUN2ck3hFEmJmuppJxzRUTe+o6T00lzjGBzUN2GzLJdLzO+y7VmXGszLzOer4Vm4zD3vWyzt70+SZnc6SKAgU= +SHA256 (Pkgfile) = 95d54b8f165b571d9fae54e1590cdc88a0deabf0acefe9f71d92b9bb62520ffd +SHA256 (.footprint) = ad158f8f54d55fa7199e5ac708d517c677a062acb3a5e8171ec6a98608ccb89f +SHA256 (discount-2.2.6.tar.gz) = 0beb98a66a6e38ed125e2d0a161ff6b461f6a38538bb72498766f376c94a0ad3 diff --git a/discount/Pkgfile b/discount/Pkgfile new file mode 100644 index 000000000..182d9dbdf --- /dev/null +++ b/discount/Pkgfile @@ -0,0 +1,19 @@ +# Description: C implementation of John Gruber's Markdown markup language +# URL: http://www.pell.portland.or.us/~orc/Code/discount/ +# Maintainer: John Vogel, jvogel4 at stny dot rr dot com + +name=discount +version=2.2.6 +release=1 +source=(https://github.com/Orc/$name/archive/v$version/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure.sh \ + --prefix=/usr \ + --pkg-config + + make + make DESTDIR=$PKG install install.man install.samples +} |