blob: 1f2244f7a5e887fc5d673bed3d7c6d8c7a37c36f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=iso-codes
pkgver=4.3
pkgrel=0
pkgdesc="ISO codes and their translations"
url="https://salsa.debian.org/iso-codes-team/iso-codes"
arch="noarch"
license="LGPL-2.1-or-later"
subpackages="$pkgname-lang $pkgname-dev"
makedepends="python3 gettext"
source="http://http.debian.net/debian/pool/main/i/$pkgname/${pkgname}_${pkgver}.orig.tar.xz"
build() {
cd "$builddir"
./configure \
--host=$CHOST \
--build=$CBUILD \
--prefix=/usr
make
}
check() {
make -C "$builddir" check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" pkgconfigdir=/usr/lib/pkgconfig install
}
sha512sums="e8acaad7df7f730401d49afbff55b66aa30cf70a2d5acf65e27e37706e270408acf6293163431053347f2699361b2a45ceedea3a881bbc74ec86c7949e11a9c9 iso-codes_4.3.orig.tar.xz"
|