mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
699 B
Bash
25 lines
699 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=homebank
|
|
pkgver=4.0.4
|
|
pkgrel=1
|
|
pkgdesc="Free, easy, personal accounting for everyone."
|
|
arch=('i686' 'x86_64')
|
|
url="http://homebank.free.fr/"
|
|
license=('GPL')
|
|
depends=('desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'libofx' 'librsvg' 'perlxml')
|
|
#options=(!makeflags)
|
|
install=$pkgname.install
|
|
source=(http://homebank.free.fr/public/$pkgname-$pkgver.tar.gz)
|
|
|
|
md5sums=('90fcd33db3e1ec00c74662ae468508d5')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|