updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / lha-autoconf-git / PKGBUILD
blob13bb80437f7a2c01071153af5871ef704427d44c
1 # Contributor: irgaly<irgaly@fird.net>
3 pkgname=lha-autoconf-git
4 _realname=lha
5 pkgver=ac20050924p1
6 _realver=1.14i
7 pkgrel=6
8 pkgdesc='Autoconf version of lha compression and archive utility with utf-8 support'
9 arch=('i686' 'x86_64')
10 license=('custom')
11 provides=('lha=1.14i')
12 conflicts=('lha')
13 makedepends=('git')
14 url='http://lha.sourceforge.jp/'
15 source=('copyright')
16 md5sums=('a269181a01b7f3fe659f52033485db74')
18 build() {
19   git clone git://git.sourceforge.jp/gitroot/lha/lha.git || return 1
20   cd lha
21   autoreconf -is || return 1
22   ./configure --enable-multibyte-filename=utf8 --prefix=/usr --mandir=/usr/share || return 1
23   make || return 1
24   make DESTDIR=$pkgdir install || return 1
25   # install license
26   install -Dm644 $srcdir/copyright $pkgdir/usr/share/licenses/$pkgname/copyright