diff options
author | Michele Calgaro <[email protected]> | 2020-11-15 19:23:30 +0800 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-11-15 19:23:30 +0800 |
commit | 0277521b268b21caf0ee21202b92784f302baadc (patch) | |
tree | 5d856f96adfbe46b57da31cf60daa1084b4e7a1e /dilos/core/tdesdk/debian/desktop-i18n/findfiles | |
parent | eb16e7c7281e182297581fa8d565561869c81bca (diff) | |
download | tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.tar.gz tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.zip |
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'dilos/core/tdesdk/debian/desktop-i18n/findfiles')
-rw-r--r-- | dilos/core/tdesdk/debian/desktop-i18n/findfiles | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dilos/core/tdesdk/debian/desktop-i18n/findfiles b/dilos/core/tdesdk/debian/desktop-i18n/findfiles new file mode 100644 index 000000000..f59fe6bae --- /dev/null +++ b/dilos/core/tdesdk/debian/desktop-i18n/findfiles @@ -0,0 +1,41 @@ +#! /usr/bin/env bash + +filelist=$1 + +rm -f "$filelist"_* $filelist + +touch $filelist + +dir=. + +find $dir -name "*.directory" -print | grep -v debian >> $filelist +find $dir -name "*.kdelnk" -print | grep -v debian >> $filelist +find $dir -name "*.desktop" -print | grep -v debian >> $filelist +find $dir -name "*.kimap" -print | grep -v debian >> $filelist +find $dir -name "*.themerc" -print | grep -v debian >> $filelist +find $dir -name "*.kcsrc" -print | grep -v debian >> $filelist +find $dir -name "*.setdlg" -print | grep -v debian >> $filelist +find $dir -name "index.theme" -print | grep -v debian >> $filelist +find $dir -name "eventsrc" -print | grep -v debian >> $filelist +find $dir -name "*.protocol" -print | grep -v debian >> $filelist + +### TEMPORARY START: we do not have TDE modules +if true; then +find ./konqueror -name .svn -prune , -name "directory.*" -type f 2>/dev/null | grep -v debian >> $filelist +find ./kdesktop -name .svn -prune , -name "directory.*" -type f 2>/dev/null | grep -v debian >> $filelist +find ./drkonqi -name "*rc" -print 2>/dev/null | grep -v debian >> $filelist +find ./kimgio -name \*.kimgio -print 2>/dev/null | grep -v debian >> $filelist +find ./noatun -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist +find ./noatun-plugins -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist +find ./amor/data -name \*rc -print 2>/dev/null | grep -v debian >> $filelist +find ./tdeprint -name \*.print -print 2>/dev/null | grep -v debian >> $filelist +find . -name \*.kksrc -print 2>/dev/null | grep -v debian >> $filelist +find ./kopete -name \*.plugin -print 2>/dev/null | grep -v debian >> $filelist +find . -name \*.kdevtemplate -print 2>/dev/null | grep -v debian >> $filelist +fi +### TEMPORARY END: we do not have TDE modules + +# Extract .directory files in template directories of KOffice +find . -name .directory|fgrep templates >> $filelist + +sort -o $filelist -u $filelist |