diff options
Diffstat (limited to 'libraries/wxPython3/wxPython3.SlackBuild')
-rw-r--r-- | libraries/wxPython3/wxPython3.SlackBuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libraries/wxPython3/wxPython3.SlackBuild b/libraries/wxPython3/wxPython3.SlackBuild index 410cc6fbaef6..b838d38693a2 100644 --- a/libraries/wxPython3/wxPython3.SlackBuild +++ b/libraries/wxPython3/wxPython3.SlackBuild @@ -23,6 +23,9 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220410 bkw: Modified by SlackBuilds.org, BUILD=4: +# - fix permissions of a couple of files. + # 20220214 bkw: Modified by SlackBuilds.org: make the build succeed # when wxPython and wxGTK3 are both installed, regardless of which one # was installed first. @@ -32,7 +35,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=wxPython3 SRCNAM=wxPython VERSION=${VERSION:-3.0.2.0} -BUILD=${BUILD:-3} +BUILD=${BUILD:-4} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -131,6 +134,11 @@ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cd $PKG/usr/doc/$PRGNAM-$VERSION/docs rm -rf cocoa latex mac metrowerks microwin msw palmos word +# 20220410 bkw: docs and includes don't need +x permission. +chmod 0644 \ + $PKG/usr/include/wx-3.0/wx/wxPython/i_files/aui.i \ + $PKG/usr/doc/$PRGNAM-$VERSION/docs/doxygen/scripts/doxymlparser.py + mkdir -p $PKG/install cat $CWD/doinst.sh > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc |