mirror of
https://git.rockylinux.org/rocky/comps.git
synced 2024-11-14 01:01:24 +00:00
17 lines
396 B
Bash
Executable File
17 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
|
|
COMPSFILE=$1
|
|
DISTRO=$2
|
|
CURDIR="${0%/*}"
|
|
|
|
if [ -z "$COMPSFILE" ] || [ -z "$DISTRO" ]; then
|
|
echo "Usage: $0 <compsfile> <distro>"
|
|
exit 1
|
|
fi
|
|
|
|
LANG=C intltool-merge -x -u po/ $COMPSFILE.in $COMPSFILE
|
|
xsltproc --stringparam distro $DISTRO --novalid -o $COMPSFILE ${CURDIR}/comps-distro-only.xsl $COMPSFILE
|
|
|
|
echo "Cleaning up empty space left over"
|
|
sed -i '/^ $/d' "${COMPSFILE}"
|