18 lines
465 B
Plaintext
18 lines
465 B
Plaintext
# Description: ISO Country/Language/Currency codes
|
|
# URL: https://salsa.debian.org/iso-codes-team/iso-codes
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: gettext python3
|
|
|
|
name=iso-codes
|
|
version=4.16.0
|
|
release=1
|
|
source=(https://salsa.debian.org/iso-codes-team/iso-codes/-/archive/v$version/iso-codes-v$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-v$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/locale
|
|
}
|