Skip to content
Snippets Groups Projects
Commit 2e7c69d1 authored by Andreas Radke's avatar Andreas Radke
Browse files

fix tool config file permission; FS#55168

parent 6467ed45
No related branches found
Tags 0.3.0-1
No related merge requests found
......@@ -2,7 +2,7 @@
pkgname=claws-mail
pkgver=3.15.0
pkgrel=2
pkgrel=3
pkgdesc="A GTK+ based e-mail client."
arch=('i686' 'x86_64')
license=('GPL3')
......@@ -44,7 +44,6 @@ validpgpkeys=('8B3B297A03468356692F8D592CD716D654D6BBD4') # Paul <paul@claws-mai
prepare() {
cd ${pkgname}-${pkgver}
# upstream reintroduction of dillo plugin - after fancy plugin dropped
#return 1
patch -Np1 -i ../dillo-plugin.diff
autoreconf -vfi
}
......@@ -72,12 +71,10 @@ package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
# build and install extra tools
# install extra tools
cd tools
make
# all executables and .conf files ; only top directory
find -maxdepth 1 -type f -and -perm /111 -or -name '*.conf' | while read i ; do
install -D -m755 ${i} \
${pkgdir}/usr/lib/claws-mail/tools/${i}
install -m755 -d ${pkgdir}/usr/lib/claws-mail/tools
for files in *.pl *.py *.sh kdeservicemenu multiwebsearch.conf tb2claws-mail update-po uudec uuooffice README; do
cp -arv $files ${pkgdir}/usr/lib/claws-mail/tools/${i}
done
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment