contrib/discount/Pkgfile

21 lines
474 B
Plaintext
Raw Normal View History

# 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
2019-08-04 23:21:39 +02:00
release=2
source=(https://github.com/Orc/$name/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure.sh \
--prefix=/usr \
2019-08-04 23:21:39 +02:00
--pkg-config \
--shared
make
make DESTDIR=$PKG install install.man install.samples
}