summaryrefslogtreecommitdiffstats
path: root/testing/mdocml/APKBUILD
blob: 99b2a07277d0c3d479d8117e6bf9eb650755b2f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Maintainer:  Natanael Copa <ncopa@alpinelinux.org>
pkgname=mdocml
pkgver=1.11.3
pkgrel=0
pkgdesc="Roff implementation"
url="http://mdocml.bsd.lv/"
arch="all"
license="BSD"
depends=
makedepends=
install=
subpackages="$pkgname-doc"
source="http://mdocml.bsd.lv/snapshots/mdocml-$pkgver.tar.gz"

_builddir="$srcdir"/$pkgname-$pkgver

prepare() {
	cd "$_builddir"
	sed -i -e 's:/usr/local:/usr:' Makefile || return 1
}

build() {
	cd "$_builddir"
	make || return 1
}

package() {
	cd "$_builddir"
	make DESTDIR="$pkgdir" MANDIR=/usr/share/man \
		EXAMPLEDIR=/usr/share/doc/mdocml/examples install
}

md5sums="497b4278acb96a087ee6f92c64b4a56d  mdocml-1.11.3.tar.gz"