mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 22:07:14 +08:00
26 lines
720 B
Bash
26 lines
720 B
Bash
|
# $Id: PKGBUILD 40078 2009-05-27 06:04:17Z juergen $
|
||
|
# Maintainer: Dan McGee <dan@archlinux.org>
|
||
|
# Contributor: Manolis Tzanidakis <manolis@archlinux.org>
|
||
|
|
||
|
pkgname=geoip
|
||
|
pkgver=1.4.6
|
||
|
pkgrel=1
|
||
|
pkgdesc="Non-DNS IP-to-country resolver C library & utils"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL')
|
||
|
url="http://www.maxmind.com/app/c"
|
||
|
depends=('zlib')
|
||
|
backup=(etc/geoip/GeoIP.conf)
|
||
|
options=('!libtool')
|
||
|
source=(http://www.maxmind.com/download/geoip/api/c/GeoIP-${pkgver}.tar.gz)
|
||
|
md5sums=('cb14b1beeb40631a12676b11ca0c309a')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/GeoIP-${pkgver}
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc/geoip
|
||
|
make || return 1
|
||
|
make check || return 1
|
||
|
make DESTDIR=${startdir}/pkg install
|
||
|
}
|
||
|
|