mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
555 B
Bash
20 lines
555 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Roberto Alsina <ralsina@kde.org>
|
||
|
|
||
|
pkgname=txt2man
|
||
|
pkgver=1.5.5
|
||
|
pkgrel=1
|
||
|
pkgdesc="Converts flat ASCII text to man page format"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://mvertes.free.fr/"
|
||
|
license=('GPL')
|
||
|
depends=( 'bash' 'gawk')
|
||
|
source=(http://mvertes.free.fr/download/txt2man-$pkgver.tar.gz)
|
||
|
md5sums=('d10fe6e9876a2969201ea4d75ac9ea48')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/txt2man-$pkgver && \
|
||
|
PATH=./:$PATH make prefix=$startdir/pkg/usr install
|
||
|
}
|