blob: 24125950f3ca8ce993ab056cf21bf9a0219a8e8c (
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
|
# Contributor: Vojtech Horky <vojta . horky at-symbol seznam . cz>
pkgname=cross-mipsel-linux-gnu-binutils
_pkgname=binutils
_target="mipsel-linux-gnu"
pkgver=2.22
pkgrel=1
pkgdesc="A set of programs to assemble and manipulate binary and object files for the MIPS architecture"
url="http://www.gnu.org/software/binutils/"
arch=('i686' 'x86_64')
license=('GPL')
depends=('zlib')
source=("ftp://ftp.gnu.org/gnu/binutils/${_pkgname}-${pkgver}.tar.bz2")
_sysroot="/usr/lib/cross-${_target}"
md5sums=('ee0f10756c84979622b992a4a61ea3f5')
build() {
cd ${srcdir}/${_pkgname}-${pkgver}
./configure \
"--prefix=${_sysroot}" \
"--bindir=/usr/bin" "--program-prefix=${_target}-" \
"--with-sysroot=${_sysroot}" \
"--target=${_target}" "--build=$CHOST" "--host=$CHOST" \
"--disable-nls" \
--with-gcc --with-gnu-as --with-gnu-ld \
--without-included-gettext
make all
}
package() {
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
msg "Removing duplicit files..."
# remove these files as they are already in the system
# (with native binutils)
rm -Rf ${pkgdir}${_sysroot}/share/{man,info}
# remove conflicting binaries
find ${pkgdir}/usr/bin/ -type f -not -name 'mipsel-linux-gnu-*' -delete
msg "Creating out-of-path executables..."
# symlink executables to single directory with no-arch-prefix name
mkdir -p ${pkgdir}/usr/bin/cross/${_target}/;
cd ${pkgdir}/usr/bin/cross/${_target}/;
for bin in ${pkgdir}/usr/bin/${_target}-*; do
bbin=`basename "$bin"`;
ln -s "/usr/bin/${bbin}" `echo "$bbin" | sed "s#^${_target}-##"`;
done
}
|