mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
674 B
Bash
22 lines
674 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: Magnus Therning <magnus@therning.org>
|
|
|
|
pkgname=keysafe
|
|
pkgver=0.4.0.1
|
|
pkgrel=2
|
|
pkgdesc="A safe place to keep your passwords."
|
|
arch=('i686' 'x86_64')
|
|
url="http://therning.org/magnus/computer/keysafe/"
|
|
license=('GPL')
|
|
depends=('gnome-python' 'boost' 'botan')
|
|
source=(http://www.therning.org/magnus_files/keysafe/$pkgname-$pkgver.tar.bz2)
|
|
install=keysafe.install
|
|
md5sums=('362669032210ab99d9dc94c1bd1f7ddf')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|