Stanislav Brabec
1a2186f01f
- Updated strings from the latest upstream translations and for the latest Factory. - COPYING file update. OBS-URL: https://build.opensuse.org/request/show/74791 OBS-URL: https://build.opensuse.org/package/show/Base:System/translation-update-upstream?expand=0&rev=23
20 lines
646 B
Bash
20 lines
646 B
Bash
#!/bin/bash
|
|
if test -z "$PACKAGE" ; then
|
|
echo "This is a hook file for upstream-collect.sh. It cannot be called separately."
|
|
exit 255
|
|
fi
|
|
|
|
# For other versions than sles10:
|
|
# Hack for nm-applet, which uses different hierrarchy than upstream:
|
|
#if test $DOMAIN = nm-applet ; then
|
|
# RPMPODIR=$(echo $RPMPKGDIR/BUILD/*/nm-applet-*/${DIR#*/})
|
|
#fi
|
|
# Hack for banshee and beagle, strangely placed to svn
|
|
#if test $DOMAIN = banshee-1 ; then
|
|
# REPODIR=banshee/banshee/po
|
|
#fi
|
|
# Hack for gnome-themes, which bundles several projects in SuSE:
|
|
if test $DOMAIN = gnome-themes ; then
|
|
RPMPODIR=$(echo $RPMPKGDIR/BUILD/gnome-themes-*/${DIR#*/})
|
|
fi
|