diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2021-08-16 13:26:19 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-08-19 18:33:46 +0700 |
commit | b04796101e370fe1e06f61c7c2d89f5596ac812c (patch) | |
tree | 4a16ad814ff9c0b0561fa5a66225b9ddf773067a | |
parent | 5ebbca2577f22dcdd18189a6e59bb940b64b1a49 (diff) |
network/aMule: Updated for version 2.3.3.
Use the C++14 standard: gcc >= 11.x defaults to -std=gnu++17
and this breaks the build in this case
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/aMule/aMule.SlackBuild | 4 | ||||
-rw-r--r-- | network/aMule/aMule.info | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/network/aMule/aMule.SlackBuild b/network/aMule/aMule.SlackBuild index 403b45de44ee4..fd332b505a590 100644 --- a/network/aMule/aMule.SlackBuild +++ b/network/aMule/aMule.SlackBuild @@ -7,7 +7,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=aMule -VERSION=${VERSION:-r11055} +VERSION=${VERSION:-2.3.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -140,7 +140,7 @@ find -L . \ -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS -std=gnu++14" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ diff --git a/network/aMule/aMule.info b/network/aMule/aMule.info index f66a5fe0f9a68..eacf317da1fae 100644 --- a/network/aMule/aMule.info +++ b/network/aMule/aMule.info @@ -1,8 +1,8 @@ PRGNAM="aMule" -VERSION="r11055" +VERSION="2.3.3" HOMEPAGE="http://www.amule.org" -DOWNLOAD="http://ponce.cc/slackware/sources/repo/aMule-r11055.tar.xz" -MD5SUM="4d4dbf14b0eb29786ad2bc17c1276aec" +DOWNLOAD="https://downloads.sf.net/amule/aMule-2.3.3.tar.xz" +MD5SUM="2858a7f693c76c23f1786364d6a80900" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="wxPython" |