37ecb145ef
No longer produce the html files OBS-URL: https://build.opensuse.org/request/show/344935 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/appstream-glib?expand=0&rev=22
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
SRC=$1
|
|
DEST=$2
|
|
URL=https://static.opensuse.org/appstream/tumbleweed
|
|
# Do not produce the html files - the biggest tasks are done
|
|
# Users interested in them can always produce them locally out of the appdata.xml.gz file
|
|
HTMLOUT=no
|
|
|
|
/usr/bin/appstream-builder \
|
|
--enable-hidpi \
|
|
--include-failed \
|
|
--temp-dir=/tmp/apb \
|
|
--cache-dir=/tmp/apb/cache \
|
|
--origin=appdata \
|
|
--api-version=0.8 \
|
|
--basename=appdata \
|
|
--packages-dir=${SRC} \
|
|
--output-dir=${DEST}
|
|
|
|
# Change screenshot URLs to our own infrastructure; disabled, as infra not ready
|
|
# appstream-util mirror-screenshots \
|
|
# ${DEST}/appdata.xml.gz \
|
|
# ${URL} \
|
|
# /usr/share/app-screenshots \
|
|
# /tmp/apb-screenshots
|
|
|
|
if [ "$HTMLOUT" = "yes" ]; then
|
|
/usr/bin/appstream-util \
|
|
status-html \
|
|
${DEST}/appdata.xml.gz \
|
|
${DEST}/appdata.html
|
|
|
|
# compress the HTML file (boo#942985)
|
|
xz -9 ${DEST}/appdata.html
|
|
|
|
/usr/bin/appstream-util \
|
|
status-html \
|
|
${DEST}/appdata-failed.xml.gz \
|
|
${DEST}/appdata-failed.html
|
|
|
|
# compress the HTML file (boo#942985)
|
|
xz -9 ${DEST}/appdata-failed.html
|
|
fi
|