diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-10 16:21:35 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-10 16:21:35 -0400 |
commit | abb2542467a69eb0f2979176d43159c71eeab7a2 (patch) | |
tree | e802ce2ff839a5c8314d6401a046a5c0e746d30e /libraries | |
parent | 1a9df115e1af1dfef2dc22dc95251a44dd6a0b57 (diff) |
libraries/wxPython3: Fix doc and include permissions.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries')
-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 |