diff options
author | finlaywashere <finman292004@protonmail.com> | 2020-01-23 08:31:42 -0500 |
---|---|---|
committer | finlaywashere <finman292004@protonmail.com> | 2020-01-23 08:31:42 -0500 |
commit | 91d6e20fc75ca5e91a9e86eb33e0af8624ac0307 (patch) | |
tree | 602005d84b7869a1061655d4c6ff49ba33656510 | |
parent | Fixed the build and updated the gcc version (diff) | |
download | i686-elf-gcc-91d6e20fc75ca5e91a9e86eb33e0af8624ac0307.tar.xz |
Added validpgpkeys
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 8 |
3 files changed, 12 insertions, 3 deletions
@@ -15,8 +15,11 @@ pkgbase = i686-elf-gcc options = !emptydirs source = https://mirrors.kernel.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.xz source = libiberty-ignore-cflags.patch + source = https://mirrors.kernel.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.xz.sig + validpgpkeys = 33C235A34C46AA3FFB293709A328C3A2C3C45C06 sha256sums = ea6ef08f121239da5695f76c9b33637a118dcf63e24164422231917fa61fb206 sha256sums = 8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c + sha256sums = SKIP pkgname = i686-elf-gcc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c9f7f43 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +pkg/ +src/ +i686* +gcc* @@ -11,11 +11,13 @@ license=(GPL LGPL) depends=($_target-binutils zlib libmpc mpfr gmp) options=(!emptydirs) source=("https://mirrors.kernel.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz" - "libiberty-ignore-cflags.patch") + "libiberty-ignore-cflags.patch" + "https://mirrors.kernel.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz.sig") sha256sums=('ea6ef08f121239da5695f76c9b33637a118dcf63e24164422231917fa61fb206' - '8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c') + '8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c' + 'SKIP') _basedir=gcc-$pkgver - +validpgpkeys=("33C235A34C46AA3FFB293709A328C3A2C3C45C06") prepare() { cd $_basedir |