mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
836 B
Bash
22 lines
836 B
Bash
|
# $Id: PKGBUILD 36954 2009-04-29 01:01:20Z eric $
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=lha
|
||
|
pkgver=1.17
|
||
|
pkgrel=3
|
||
|
pkgdesc="lha is a compression and archive utility for LH-7 format archives"
|
||
|
arch=('i686')
|
||
|
url="http://www.infor.kanazawa-it.ac.jp/~ishii/lhaunix/"
|
||
|
license=('custom')
|
||
|
depends=('glibc')
|
||
|
source=(http://www.infor.kanazawa-it.ac.jp/~ishii/lhaunix/linux/${pkgname}117.tar.gz LICENSE lha.man.en)
|
||
|
md5sums=('7896188203cfaf5782d153c4dcd19f57' 'be11a6fd915099970126b23d683937dd'\
|
||
|
'558fa922133507817137ed4b27764cc8')
|
||
|
|
||
|
build() {
|
||
|
install -D -m755 $srcdir/lha $pkgdir/usr/bin/lha
|
||
|
install -D -m644 $srcdir/lha.man $pkgdir/usr/share/man/ja/man1/lha.1
|
||
|
install -D -m644 $srcdir/lha.man.en $pkgdir/usr/share/man/man1/lha.1
|
||
|
install -D -m644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
||
|
}
|