mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
25 lines
669 B
Bash
25 lines
669 B
Bash
# $Id: PKGBUILD 47851 2009-07-28 09:48:01Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=less
|
|
pkgver=436
|
|
pkgrel=2
|
|
pkgdesc="A terminal based program for viewing text files"
|
|
license=('GPL3')
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.greenwoodsoftware.com/less"
|
|
groups=('base')
|
|
depends=('ncurses')
|
|
source=(http://www.greenwoodsoftware.com/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('817bf051953ad2dea825a1cdf460caa4')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make prefix=$pkgdir/usr install
|
|
install -dm755 $pkgdir/bin
|
|
mv $pkgdir/usr/bin/$pkgname $pkgdir/bin/
|
|
}
|