mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
c92ebd1f3b
The legacy /usr/share/appdata/*.appdata.xml path has been superseded by /usr/share/metainfo/*.metainfo.xml https://freedesktop.org/software/appstream/docs/chap-Metadata.html#spec-component-location Signed-off-by: Alexander Wilms <f.alexander.wilms@gmail.com>
13 lines
633 B
Bash
Executable file
13 lines
633 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# work either when building from git or when building from our hand
|
|
# crafted tar balls for OBS
|
|
# this will, however, fail for plain tar balls create via git archive
|
|
|
|
SCRIPT_DIR="$( cd "${BASH_SOURCE%/*}" ; pwd )"
|
|
VERSION=$(git describe --match "v[0-9]*" --abbrev=12) || VERSION=$(cat "$SCRIPT_DIR"/../.gitversion)
|
|
DATE=$(git log -1 --format="%ct" | xargs -I{} date -d @{} +%Y-%m-%d)
|
|
if [ "$DATE" = "" ] ; then
|
|
DATE=$(cat "$SCRIPT_DIR"/../.gitdate)
|
|
fi
|
|
sed -e "s|<release version=\"\" date=\"\" />|<release version=\"$VERSION\" date=\"$DATE\" />|" metainfo/subsurface.metainfo.xml.in > metainfo/subsurface.metainfo.xml
|