core/iso-codes/PKGBUILD
Jan Mette 93d9bd24fe
2010-03-14 15:48:48 +00:00

20 lines
596 B
Bash

# $Id: PKGBUILD 71579 2010-03-07 19:58:22Z jgc $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=iso-codes
pkgver=3.14
pkgrel=1
arch=(any)
license=('LGPL')
pkgdesc="Lists of the country, language, and currency names"
url="http://pkg-isocodes.alioth.debian.org/"
source=(ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/${pkgname}-${pkgver}.tar.bz2)
md5sums=('b4bedcd57de703ac4f9f4c21a77dc7d5')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="${pkgdir}" pkgconfigdir=/usr/lib/pkgconfig install || return 1
}