mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 05:17:07 +02:00
community/discount: build all shared and add check
This commit is contained in:
parent
1c5670fe31
commit
c1530cb27b
@ -2,16 +2,18 @@
|
||||
# Maintainer: Carlo Landmeter <clandmeter@alpinelinux.org>
|
||||
pkgname=discount
|
||||
pkgver=2.2.2
|
||||
pkgrel=0
|
||||
pkgrel=1
|
||||
pkgdesc="A Markdown to HTML translator written in C"
|
||||
url="http://www.pell.portland.or.us/~orc/Code/discount/"
|
||||
arch="all"
|
||||
license="BSD"
|
||||
depends="!markdown"
|
||||
makedepends=""
|
||||
subpackages="$pkgname-dev $pkgname-doc"
|
||||
checkdepends="diffutils"
|
||||
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs"
|
||||
source="http://www.pell.portland.or.us/~orc/Code/discount/$pkgname-$pkgver.tar.bz2
|
||||
configure.inc.patch"
|
||||
configure.inc.patch
|
||||
"
|
||||
builddir="$srcdir/$pkgname-$pkgver"
|
||||
|
||||
build() {
|
||||
@ -21,13 +23,26 @@ build() {
|
||||
--mandir=/usr/share/man \
|
||||
--enable-all-features \
|
||||
--with-fenced-code \
|
||||
|| return 1
|
||||
make || return 1
|
||||
--pkg-config \
|
||||
--shared
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
msg "Running testsuites..."
|
||||
cd "$builddir"
|
||||
make test
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
make PREFIX=/usr DESTDIR="$pkgdir" install install.man || return 1
|
||||
make PREFIX=/usr DESTDIR="$pkgdir" install.everything
|
||||
local bin; for bin in theme makepage mkd2html; do
|
||||
mv "$pkgdir"/usr/bin/$bin \
|
||||
"$pkgdir"/usr/bin/$pkgname-$bin
|
||||
mv "$pkgdir"/usr/share/man/man1/$bin.1 \
|
||||
"$pkgdir"/usr/share/man/man1/$pkgname-$bin.1
|
||||
done
|
||||
}
|
||||
|
||||
sha512sums="67d882c0a334592230332815c543458b3c916a950bf7983f8a468fbc9f61154b4023d4bf451b76639fcb3a076506b48118f192a8e21f2535b3f49c7f081bbdf3 discount-2.2.2.tar.bz2
|
||||
|
Loading…
Reference in New Issue
Block a user