Merge pull request #3493 from lemmi/dispcalGUI

dispcalGUI: fix permissions
This commit is contained in:
Juan RP 2016-02-01 08:42:20 +01:00
commit 5de5f44f41

View File

@ -1,7 +1,7 @@
# Template file for 'dispcalGUI'
pkgname=dispcalGUI
version=3.0.6.3
revision=1
revision=2
build_style=python-module
nocross=yes
hostmakedepends="python"
@ -17,3 +17,8 @@ checksum=ca4384b5bf467153e6466492a9e257bff5eefbc80f96531847f2a504bf9b76a2
pre_configure() {
sed -i 's|MimeType=model/vrml;x-world/x-vrml;|MimeType=model/vrml;|' misc/dispcalGUI-VRML-to-X3D-converter.desktop
}
post_install() {
find ${DESTDIR}/usr/ -exec chmod a+r \{\} +
find ${DESTDIR}/usr/ -type d -exec chmod a+x \{\} +
}