mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
773 B
Bash
24 lines
773 B
Bash
|
# $Id: PKGBUILD 27136 2009-02-16 07:59:07Z eric $
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=manedit
|
||
|
pkgver=1.2.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="An editor specifically tailored for UNIX manual pages"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://www.battlefieldlinux.com/wolfpack/ManEdit/"
|
||
|
depends=('gcc-libs' 'bzip2' 'zlib' 'gtk')
|
||
|
source=(http://wolfsinger.com/~wolfpack/packages/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('a7ee1835e32ed3c9279412af7caf13ef')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure Linux --prefix=/usr -v --enable="arch-$CARCH"
|
||
|
make all || return 1
|
||
|
make PREFIX=$startdir/pkg/usr install
|
||
|
# move manpage to FHS location
|
||
|
mv $startdir/pkg/usr/man $startdir/pkg/usr/share/man
|
||
|
}
|