mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
7 lines
382 B
Bash
Executable file
7 lines
382 B
Bash
Executable file
#! /bin/sh
|
|
kget_subdirs="conf core dbus transfer-plugins ui extensions/webinterface"
|
|
$EXTRACTRC `find $kget_subdirs -name \*.ui` >> rc.cpp || exit 11
|
|
$EXTRACTRC `find $kget_subdirs -name \*.rc` >> rc.cpp || exit 12
|
|
$EXTRACTRC `find $kget_subdirs -name \*.kcfg` >> rc.cpp || exit 13
|
|
$XGETTEXT `find $kget_subdirs -name \*.cpp -o -name \*.h` *.cpp *.h -o $podir/kget.pot
|
|
rm -f rc.cpp
|