comparison dev/binutils/binutils.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents ae55d9077f70
children a0efa9896267
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=2.32 19 PKGVERSION=2.32
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="GPLv3" 21 PKGLICENSE="GPLv3"
22 PKGSUMMARY="programs to manipulate binary and object files" 22 PKGSUMMARY="programs to manipulate binary and object files"
23 PKGDOWNLOAD="https://ftp.gnu.org/gnu/$PKGNAME/$PKGNAME-$PKGVERSION.tar.xz" 23 PKGDOWNLOAD="https://ftp.gnu.org/gnu/$PKGNAME/$PKGNAME-$PKGVERSION.tar.xz"
24 PKGDEPENDS="compression/zlib" 24 PKGDEPENDS="zlib"
25 PKGOPTIONS="GDB NLS" 25 PKGOPTIONS="GDB NLS"
26 26
27 : ${CHOST:=$(uname -m)-linux-musl} 27 : ${CHOST:=$(uname -m)-linux-musl}
28 : ${CBUILD:=$(uname -m)-linux-musl} 28 : ${CBUILD:=$(uname -m)-linux-musl}
29 : ${CC:=clang} 29 : ${CC:=clang}
40 else 40 else
41 with_gdb="--disable-gdb" 41 with_gdb="--disable-gdb"
42 fi 42 fi
43 43
44 if [ "$NLS" = "yes" ]; then 44 if [ "$NLS" = "yes" ]; then
45 PKGDEPENDS="core/gettext $PKGDEPENDS" 45 PKGDEPENDS="gettext $PKGDEPENDS"
46 with_nls="--enable-nls" 46 with_nls="--enable-nls"
47 else 47 else
48 with_nls="--disable-nls" 48 with_nls="--disable-nls"
49 fi 49 fi
50 50