33 lines
946 B
Bash
33 lines
946 B
Bash
# Template file for 'discount'
|
|
pkgname=discount
|
|
version=2.2.0
|
|
revision=3
|
|
build_style=configure
|
|
configure_script="./configure.sh"
|
|
configure_args="--prefix=/usr --shared"
|
|
short_desc="C implementation of John Gruber's Markdown"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="3-clause-BSD"
|
|
homepage="http://www.pell.portland.or.us/~orc/Code/discount"
|
|
distfiles="${homepage}/${pkgname}-${version}.tar.bz2"
|
|
checksum=b25395c29c2c08836199eb2eae87b56e6b545e77f5fbf921678aa1dc0ddab9f3
|
|
|
|
nocross="http://build.voidlinux.eu/builders/armv7l_builder/builds/22221/steps/shell_3/logs/stdio"
|
|
|
|
post_extract() {
|
|
sed -i '/^LFLAGS/s/$/ $(LDFLAGS)/' Makefile.in
|
|
}
|
|
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/share/man/man3
|
|
}
|
|
}
|