contrib/discount/Pkgfile

22 lines
492 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
2020-10-21 11:15:14 +02:00
version=2.2.7
release=1
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
2020-10-21 11:15:14 +02:00
make libmarkdown
make
make DESTDIR=$PKG install install.man install.samples
}