core/gdbm/PKGBUILD

51 lines
1.4 KiB
Bash
Raw Normal View History

2010-04-04 22:20:41 +08:00
2010-03-13 23:25:19 +08:00
pkgname=gdbm
pkgver=1.11
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="GNU database library"
url="http://www.gnu.org/software/gdbm/gdbm.html"
license=('GPL3')
arch=('x86_64')
2010-04-04 22:20:41 +08:00
depends=('glibc' 'sh')
options=('!makeflags')
2010-03-13 23:25:19 +08:00
install=gdbm.install
source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz{,.sig}
gdbm-1.10-zeroheaders.patch)
validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732')
md5sums=('72c832680cf0999caedbe5b265c8c1bd'
'SKIP'
'2a5979910c338dabda6935263b3d8af9')
2010-03-13 23:25:19 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
# Prevent gdbm from storing uninitialized memory content
# to database files. This patch improves security, as the
# uninitialized memory might contain sensitive informations
# from other applications.
# https://bugzilla.redhat.com/show_bug.cgi?id=4457
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=208927
patch -Np1 -i ../gdbm-1.10-zeroheaders.patch
./configure --prefix=/usr \
--enable-libgdbm-compat
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
}
2010-04-04 22:20:41 +08:00
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-04-04 22:20:41 +08:00
# create symlinks for compatibility
install -dm755 "${pkgdir}"/usr/include/gdbm
ln -sf ../gdbm.h "${pkgdir}"/usr/include/gdbm/gdbm.h
ln -sf ../ndbm.h "${pkgdir}"/usr/include/gdbm/ndbm.h
ln -sf ../dbm.h "${pkgdir}"/usr/include/gdbm/dbm.h
2010-03-13 23:25:19 +08:00
}