blob: 3777167abdbf64de24c1f62ae2ed74e20b1a6527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=groff
pkgver=1.20.1
pkgrel=0
pkgdesc="GNU troff text-formatting system"
url="http://www.gnu.org/software/groff/groff.html"
license="GPL"
depends="uclibc uclibc++"
makedepends="perl texinfo uclibc++-dev"
subpackages="$pkgname-doc"
source="ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
build () {
cd "$srcdir/$pkgname-$pkgver"
export CXX=g++-uc
./configure --prefix=/usr --without-x
make || return 1
make DESTDIR="$pkgdir" install
}
md5sums="48fa768dd6fdeb7968041dd5ae8e2b02 groff-1.20.1.tar.gz"
|