blob: 4ed1effb58236f0ac3e0ef9fedc4d76733bf0482 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Maintainer: randomnobody <nobody "at" 420blaze "dot" it>
# Contributor: Sebastian <sebastianmontoya209@protonmail.com>
# Contributor: Finlay Maroney <finman292004@protonmail.com>
# Contributor: thatmadhacker <finman292004@gmail.com>
# Contributor: Marc Boocha <marcboocha@gmail.com>
_target=x86_64-elf
_sysroot=/usr/lib/${_target}
_pkgname=binutils
pkgname=$_target-${_pkgname}
pkgver=2.41
pkgrel=1
pkgdesc='A set of programs to assemble and manipulate binary and object files for the x86_64-elf target'
arch=(x86_64)
url='https://www.gnu.org/software/binutils/'
license=('GPL')
depends=(zlib libelf)
options=(!emptydirs !docs)
source=(https://mirrors.kernel.org/gnu/binutils/binutils-$pkgver.tar.xz{,.sig})
sha256sums=('ae9a5789e23459e59606e6714723f2d3ffc31c03174191ef0d015bdf06007450'
'SKIP')
validpgpkeys=(3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F) # Nick Clifton (Chief Binutils Maintainer) <nickc@redhat.com>
_basedir=binutils-$pkgver
prepare() {
cd ${srcdir}/${_pkgname}-${pkgver}
mkdir $srcdir/binutils-build
}
build() {
cd binutils-build
$srcdir/$_basedir/configure \
--target=$_target \
--prefix=${_sysroot} \
--bindir=/usr/bin \
--libdir=/usr/lib/x86_64-elf/ \
--with-sysroot=${_sysroot} \
--disable-nls \
--disable-werror
make
}
check() {
cd binutils-build
# do not abort on errors - manually check log files
make -k check
}
package() {
cd binutils-build
make DESTDIR="$pkgdir" install
# Remove info and make since it expected already present by host compiler
rm -r ${pkgdir}/${_sysroot}/share/{info,man}
}
|