mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
10 lines
252 B
Bash
10 lines
252 B
Bash
![]() |
#! /usr/bin/env bash
|
||
|
$EXTRACTRC `find -name "*.rc"` >> rc.cpp
|
||
|
find -name "*.cpp" -print > files
|
||
|
find -name "*.cc" -print >> files
|
||
|
find -name "*.h" -print >> files
|
||
|
$XGETTEXT --files-from=files -o $podir/ktexteditor_plugins.pot
|
||
|
rm -f files
|
||
|
rm -f rc.cpp
|
||
|
|