blob: cfb45bea2d732259eda9304ed988ae9315f1d5d8 (
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
|
# 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 $pkgname-dev"
source="http://mdocml.bsd.lv/snapshots/mdocml-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
cd "$_builddir"
}
build() {
cd "$_builddir"
make PREFIX=/usr || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" PREFIX=/usr MANDIR=/usr/share/man \
EXAMPLEDIR=/usr/share/doc/mdocml/examples install
}
md5sums="497b4278acb96a087ee6f92c64b4a56d mdocml-1.11.3.tar.gz"
|