diff options
author | CTK | 2017-02-10 23:57:34 +0100 |
---|---|---|
committer | CTK | 2017-02-10 23:57:34 +0100 |
commit | 63509378bbd753ef4c5c55f8f56f71ffe6cf2f6f (patch) | |
tree | d3d4b36de0a5a8ccfca87a2e3565336b7d90e47e /PKGBUILD | |
parent | ba6aabfcf8775e1ce28f97f3364a599a477c8129 (diff) | |
download | aur-63509378bbd753ef4c5c55f8f56f71ffe6cf2f6f.tar.gz |
Add localization files, that the new build system since SVN r516 omits to copy to the DESTDIR
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -33,4 +33,10 @@ build(){ package(){ cd "${srcdir}/${gitname}" make DESTDIR="$pkgdir/" install + + # Add forgotten localization files + cd po + for mofile in *.mo;do + install -Dm755 "$mofile" "$pkgdir/usr/share/fbpanel/locale/${mofile%%_*}/LC_MESSAGES/fbpanel.mo" + done } |