30 lines
849 B
Bash
30 lines
849 B
Bash
# Template file for 'discount'
|
|
pkgname=discount
|
|
version=2.2.7
|
|
revision=1
|
|
build_style=configure
|
|
configure_script="./configure.sh"
|
|
configure_args="--prefix=/usr --shared --pkg-config"
|
|
short_desc="C implementation of John Gruber's Markdown"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="http://www.pell.portland.or.us/~orc/Code/discount"
|
|
distfiles="https://github.com/Orc/discount/archive/v${version}.tar.gz"
|
|
checksum=72c1325ddfc40871d6810f1e272cf2d45b361f26357eb38f170fd04d737bb9f2
|
|
disable_parallel_build=yes
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install install.man
|
|
vlicense COPYRIGHT
|
|
}
|
|
discount-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|