File indexing completed on 2024-05-12 05:17:32

0001 #!/bin/bash
0002 # SPDX-FileCopyrightText: 2019-2022 Volker Krause <vkrause@kde.org>
0003 # SPDX-License-Identifier: BSD-2-Clause
0004 set -e
0005 set -x
0006 
0007 ISOCODES_VERSION=4.15.0
0008 
0009 mkdir -p $BUILD_ROOT
0010 mkdir -p $STAGING_ROOT
0011 
0012 pushd $BUILD_ROOT
0013 
0014 git clone --branch v$ISOCODES_VERSION --depth 1 https://salsa.debian.org/iso-codes-team/iso-codes.git
0015 cd iso-codes
0016 
0017 ./configure --prefix=$STAGING_ROOT
0018 make -j 4
0019 make install
0020 
0021 popd