diff options
author | Arn0 <yth@ythogtha.org> | 2021-04-12 09:32:55 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-04-13 20:03:24 +0700 |
commit | b53738b7544832c92bd04c227a0767616218354c (patch) | |
tree | 7cb7c4e5924f499820ad40a9280f19eca164219f | |
parent | 8ba6e2e9dca00e07254e374928bf1c63064d36e9 (diff) | |
download | slackbuilds-b53738b7544832c92bd04c227a0767616218354c.tar.gz |
libraries/rhonabwy: updated for version 0.9.999
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | libraries/rhonabwy/rhonabwy.SlackBuild | 15 | ||||
-rw-r--r-- | libraries/rhonabwy/rhonabwy.info | 6 |
2 files changed, 13 insertions, 8 deletions
diff --git a/libraries/rhonabwy/rhonabwy.SlackBuild b/libraries/rhonabwy/rhonabwy.SlackBuild index 51ca0cfe53..0dcb0f0911 100644 --- a/libraries/rhonabwy/rhonabwy.SlackBuild +++ b/libraries/rhonabwy/rhonabwy.SlackBuild @@ -21,7 +21,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=rhonabwy -VERSION=${VERSION:-0.9.99} +VERSION=${VERSION:-0.9.999} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -39,16 +39,16 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" + SLKCFLAGS="-O2 -march=i586 -mtune=i686 -Wno-error=maybe-uninitialized" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" + SLKCFLAGS="-O2 -march=i686 -mtune=i686 -Wno-error=maybe-uninitialized" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" + SLKCFLAGS="-O2 -fPIC -Wno-error=maybe-uninitialized" LIBDIRSUFFIX="64" else - SLKCFLAGS="-O2" + SLKCFLAGS="-O2 -Wno-error=maybe-uninitialized" LIBDIRSUFFIX="" fi @@ -82,6 +82,11 @@ cd .. find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +mv $PKG/usr/share/man $PKG/usr/ + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION DOCS="LICENSE README.md" cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/libraries/rhonabwy/rhonabwy.info b/libraries/rhonabwy/rhonabwy.info index 26aaab4292..8d9b0fbe19 100644 --- a/libraries/rhonabwy/rhonabwy.info +++ b/libraries/rhonabwy/rhonabwy.info @@ -1,8 +1,8 @@ PRGNAM="rhonabwy" -VERSION="0.9.99" +VERSION="0.9.999" HOMEPAGE="https://github.com/babelouest/rhonabwy" -DOWNLOAD="https://github.com/babelouest/rhonabwy/archive/v0.9.99/rhonabwy-0.9.99.tar.gz" -MD5SUM="46853f67a106a6f7ae98ef98d3244b0a" +DOWNLOAD="https://github.com/babelouest/rhonabwy/archive/v0.9.999/rhonabwy-0.9.999.tar.gz" +MD5SUM="b267fce07eeafc3ed327ecfb5400c93c" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="jansson libmicrohttpd ulfius" |