diff options
Diffstat (limited to 'libraries/libwebsocketpp/libwebsocketpp.SlackBuild')
-rw-r--r-- | libraries/libwebsocketpp/libwebsocketpp.SlackBuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libraries/libwebsocketpp/libwebsocketpp.SlackBuild b/libraries/libwebsocketpp/libwebsocketpp.SlackBuild index 71626f8e0640d..a6cddb99e2ba2 100644 --- a/libraries/libwebsocketpp/libwebsocketpp.SlackBuild +++ b/libraries/libwebsocketpp/libwebsocketpp.SlackBuild @@ -25,8 +25,8 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=libwebsocketpp -VERSION=20120917 -BUILD=${BUILD:-1} +VERSION=${VERSION:-20120917} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -65,7 +65,13 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -chmod -R u+w,go+r-w,a-s . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +patch -p0 < $CWD/libwebsocketpp.patch make -j1 CXXFLAGS="$SLKCFLAGS" make -j1 install prefix=$PKG/usr libdir=lib$LIBDIRSUFFIX SHARED=1 |