mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 19:04:37 +08:00
36 lines
815 B
Bash
36 lines
815 B
Bash
pkgname=libgpg-error
|
|
pkgver=1.25
|
|
pkgrel=1
|
|
pkgdesc="Support library for libgcrypt"
|
|
arch=(x86_64)
|
|
url="http://www.gnupg.org"
|
|
license=('LGPL')
|
|
depends=('glibc' 'sh')
|
|
options=(!libtool)
|
|
source=("ftp://ftp.gnupg.org/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig})
|
|
install=${pkgname}.install
|
|
sha1sums=('8ab7494e40f80f4138edc9516981bf4afe7d9dbf'
|
|
'SKIP')
|
|
validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6' # Werner Koch
|
|
'031EC2536E580D8EA286A9F22071B08A33BD3F06') # NIIBE Yutaka (GnuPG Release Key) <gniibe@fsij.org>
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|