🔒 Repository is read-only – file editing is disabled.

recipes/core/binutils/PAGBUILD.yaml main

36 linii Raw ← Powrót
123456789101112131415161718192021222324252627282930313233343536
pkgname: binutils
pkgver: '2.47'
pkgrel: '1'
pkgdesc: Linker, assembler, and other tools for handling object files.
url: 'https://sources.redhat.com/binutils/'
arch: x86_64
depends: []
makedepends:
- perl
- texinfo
source:
- 'https://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.xz'
sha256sums:
- 154ab23b60070e8f27013c22977f1129425d67d1e8acd6e13010e617811e4cff
build: |
  cd binutils-${pkgver}

  mkdir -v build
  cd build

  ../configure --prefix=/usr \
  --enable-gold \
  --enable-ld=default \
  --enable-plugins \
  --enable-shared \
  --disable-werror \
  --enable-64-bit-bfd \
  --with-system-zlib \
  --enable-gprofng=no


  make tooldir=/usr

  make tooldir=/usr DESTDIR=${PKGDIR} install -j1
package: |
  true