mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
662 B
Bash
26 lines
662 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
|
|
pkgname=libgringotts
|
|
pkgver=1.2.1
|
|
pkgrel=6
|
|
pkgdesc="Encryption backend for Gringotts."
|
|
arch=('i686' 'x86_64')
|
|
url="http://developer.berlios.de/projects/gringotts"
|
|
license=('GPL')
|
|
depends=('bzip2' 'libmcrypt' 'libtool' 'mhash' 'zlib')
|
|
makedepends=('autoconf')
|
|
source=(http://download.berlios.de/gringotts/$pkgname-$pkgver.tar.bz2)
|
|
|
|
md5sums=('b2b1bad56ef33153f251ccd9500860be')
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
|
|
autoconf
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
rm -fr "${pkgdir}/usr/share"
|
|
}
|