mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 20:27:14 +08:00
21 lines
625 B
Bash
21 lines
625 B
Bash
# $Id: PKGBUILD 79072 2010-04-30 06:23:27Z tpowa $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=dirmngr
|
|
pkgver=1.1.0rc1
|
|
pkgrel=1
|
|
pkgdesc="A daemon to handle CRL and certificate requests"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="ftp://ftp.gnupg.org/gcrypt/dirmngr"
|
|
depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth')
|
|
source=(ftp://ftp.gnupg.org/gcrypt/alpha/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --libexecdir=/usr/lib
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install
|
|
}
|
|
md5sums=('73e17b07baff7fe3f2268aa6df1b2f2d')
|