27 lines
672 B
Bash
27 lines
672 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=iso-codes
|
|
pkgver=4.17.0
|
|
pkgrel=1
|
|
pkgdesc='Lists of the country, language, and currency names'
|
|
url='https://salsa.debian.org/iso-codes-team/iso-codes'
|
|
arch=(any)
|
|
license=(LGPL-2.1-only)
|
|
makedepends=(git
|
|
python)
|
|
source=(git+https://salsa.debian.org/iso-codes-team/iso-codes#tag=v$pkgver)
|
|
sha256sums=('afd206beb6f33633280866d206598bc24384863a51d0fd6c1c82410b5f33eee5')
|
|
|
|
build() {
|
|
cd $pkgname
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make DESTDIR="$pkgdir" install
|
|
}
|