kde-plasma-6/discount/Pkgfile

24 lines
522 B
Plaintext
Raw Normal View History

# Description: C implementation of John Gruber's Markdown markup language
# URL: https://github.com/Orc/discount
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on:
name=discount
version=3.0.0d
release=1
source=(https://github.com/Orc/discount/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure.sh \
--prefix=/usr \
--enable-all-features \
--with-fenced-code \
--shared
make
make DESTDIR=$PKG install
}
# vim: set ts=4 et: