diff options
author | finlaywashere <finman292004@protonmail.com> | 2020-01-15 15:21:49 -0500 |
---|---|---|
committer | finlaywashere <finman292004@protonmail.com> | 2020-01-15 15:21:49 -0500 |
commit | 174295a1a3412412bb51235293de40adfd217441 (patch) | |
tree | ed9ace2f31ae06e2ea67e13f60ee25b9f900ecb4 | |
parent | Fixed the build and updated binutils (diff) | |
download | i686-elf-binutils-174295a1a3412412bb51235293de40adfd217441.tar.xz |
Updated to latest version
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 10 |
3 files changed, 14 insertions, 8 deletions
@@ -1,6 +1,6 @@ pkgbase = i686-elf-binutils pkgdesc = A set of programs to assemble and manipulate binary and object files for the i686-elf target - pkgver = 2.32 + pkgver = 2.33.1 pkgrel = 2 url = http://www.gnu.org/software/binutils/ arch = i686 @@ -9,10 +9,10 @@ pkgbase = i686-elf-binutils depends = zlib options = !emptydirs options = !docs - source = http://mirrors.kernel.org/gnu/binutils/binutils-2.32.tar.xz + source = http://mirrors.kernel.org/gnu/binutils/binutils-2.33.1.tar.xz source = libiberty-ignore-cflags.patch - sha256sums = 0ab6c55dd86a92ed561972ba15b9b70a8b9f75557f896446c82e8b36e473ee04 - sha256sums = 8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c + md5sums = 9406231b7d9dd93731c2d06cefe8aaf1 + md5sums = 2b02f02bd95249b0fbcf76412ee18f72 pkgname = i686-elf-binutils diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..92ee8fd --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +binutils-* +i686-* @@ -2,7 +2,7 @@ _target=i686-elf pkgname=$_target-binutils -pkgver=2.32 +pkgver=2.33.1 pkgrel=2 pkgdesc='A set of programs to assemble and manipulate binary and object files for the i686-elf target' arch=(i686 x86_64) @@ -11,11 +11,12 @@ license=(GPL) depends=(zlib) options=(!emptydirs !docs) source=("http://mirrors.kernel.org/gnu/binutils/binutils-$pkgver.tar.xz" + "https://mirrors.kernel.org/gnu/binutils/binutils-2.33.1.tar.xz.sig" "libiberty-ignore-cflags.patch") -sha256sums=('0ab6c55dd86a92ed561972ba15b9b70a8b9f75557f896446c82e8b36e473ee04' - '8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c') _basedir=binutils-$pkgver - +sha256sums=('ab66fc2d1c3ec0359b8e08843c9f33b63e8707efdff5e4cc5c200eae24722cbf' + 'SKIP' + '8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c') prepare() { cd $_basedir @@ -52,3 +53,4 @@ package() { rm -r ${pkgdir}/usr/share/{info,man} } + |