core/iso-codes/PKGBUILD
2017-06-29 01:57:04 +01:00

25 lines
597 B
Bash

# Contributor from Arch: Jan de Groot <jgc@archlinux.org>
pkgname=iso-codes
pkgver=3.75
pkgrel=1
arch=(any)
license=('LGPL')
pkgdesc="Lists of the country, language, and currency names"
url="http://pkg-isocodes.alioth.debian.org/"
makedepends=('python3')
source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
md5sums=('9ba173b69d4360003414f23837597a92'
'SKIP')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" pkgconfigdir=/usr/lib/pkgconfig install
}