1
0
forked from ports/contrib

discount: initial import

This commit is contained in:
John Vogel 2019-06-17 03:44:26 -04:00
parent cf2ecb6c58
commit b153011e7b
3 changed files with 63 additions and 0 deletions

39
discount/.footprint Normal file
View File

@ -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

5
discount/.signature Normal file
View File

@ -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

19
discount/Pkgfile Normal file
View File

@ -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
}