mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:37:16 +08:00
25 lines
658 B
Bash
25 lines
658 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributor from Arch: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=iso-codes
|
|
pkgver=3.38
|
|
pkgrel=1
|
|
arch=(any)
|
|
license=('LGPL')
|
|
pkgdesc="Lists of the country, language, and currency names"
|
|
url="http://pkg-isocodes.alioth.debian.org/"
|
|
source=(http://pkg-isocodes.alioth.debian.org/downloads/$pkgname-$pkgver.tar.xz{,.sig})
|
|
md5sums=('df8dacc718116dae3db453a4d85c018a'
|
|
'5cc8ca3eec407a318fda79043de28569')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" pkgconfigdir=/usr/lib/pkgconfig install
|
|
}
|