mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
606 B
Bash
20 lines
606 B
Bash
|
# $Id: PKGBUILD 44706 2009-07-03 18:11:20Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=iso-codes
|
||
|
pkgver=3.10.1
|
||
|
pkgrel=1
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL')
|
||
|
pkgdesc="Lists of the country, language, and currency names"
|
||
|
source=(ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/${pkgname}-${pkgver}.tar.bz2)
|
||
|
url="http://pkg-isocodes.alioth.debian.org/"
|
||
|
md5sums=('1db1466d1ea63fe5fc349b7ba8b189fb')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" pkgconfigdir=/usr/lib/pkgconfig install || return 1
|
||
|
}
|