blob: 276560c8b56510b09257a3219997bfea2216ac1b (
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
|
#!/bin/bash
DEPS=(glibc)
SOURCE=https://mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-11.2.0/gcc-11.2.0.tar.xz
DESC="The GNU Compiler Collection - C and C++ frontends"
build () {
case $(uname -m) in
x86_64)
sed -e '/m64=/s/lib64/lib/' \
-i.orig gcc/config/i386/t-linux64
;;
esac
mkdir -v build
cd build
../configure --prefix=/usr --disable-multilib
make
make DESTDIR=$PKG_DEST install
}
package () {
ln -sv /usr/bin/gcc $PKG_DEST/lib/cpp
}
|