32 lines
932 B
Bash
32 lines
932 B
Bash
# Template file for 'discount'
|
|
pkgname=discount
|
|
version=2.2.2
|
|
revision=1
|
|
build_style=configure
|
|
configure_script="./configure.sh"
|
|
configure_args="--prefix=/usr --shared"
|
|
short_desc="C implementation of John Gruber's Markdown"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="3-clause-BSD"
|
|
homepage="http://www.pell.portland.or.us/~orc/Code/discount"
|
|
distfiles="${homepage}/${pkgname}-${version}.tar.bz2"
|
|
checksum=ec7916731e3ef8516336333f8b7aa9e2af51e57c0017b1e03fa43f1ba6978f64
|
|
|
|
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
|
|
}
|
|
}
|