Merge pull request 'fix binutils and add x libs' (#38) from Ohio2/repo:master into master

Reviewed-on: alnux/repo#38
This commit is contained in:
hippoz 2021-08-04 22:28:35 +01:00
commit fedd4287b5
7 changed files with 43 additions and 1 deletions

View file

@ -1,4 +1,4 @@
wget -O binutils-2.37.tar.xz https://ftp.gnu.org/gnu/binutils/binutils-2.36.1.tar.xz wget https://ftp.gnu.org/gnu/binutils/binutils-2.37.tar.xz
tar -xf binutils-2.37.tar.xz tar -xf binutils-2.37.tar.xz
cd binutils-2.37 cd binutils-2.37

9
libXfixes/build Executable file
View file

@ -0,0 +1,9 @@
wget https://x.org/releases/individual/lib/libXfixes-6.0.0.tar.bz2
tar -xf libXfixes-6.0.0.tar.bz2
cd libXfixes-6.0.0
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

5
libXfixes/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="6.0.0"
pkg_config_name="libXfixes"
pkg_config_makedepends="xorg-xorgproto pkg-config-fd"
pkg_config_depends="libX11"

9
libXfont2/build Executable file
View file

@ -0,0 +1,9 @@
wget https://x.org/releases/individual/lib/libXfont2-2.0.4.tar.bz2
tar -xf libXfont2-2.0.4.tar.bz2
cd libXfont2-2.0.4
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

5
libXfont2/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="2.0.4"
pkg_config_name="libXfont2"
pkg_config_makedepends="xorg-xorgproto pkg-config-fd xorg-xtrans"
pkg_config_depends="freetype-harfbuzz"

9
libXft/build Executable file
View file

@ -0,0 +1,9 @@
wget https://x.org/releases/individual/lib/libXft-2.3.3.tar.bz2
tar -xf libXft-2.3.3.tar.bz2
cd libXft-2.3.3
./configure \
--prefix=/usr
make
make DESTDIR="$1" install

5
libXft/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="1.7.2 1"
pkg_config_name="libX11"
pkg_config_makedepends="fontconfig freetype-harfbuzz libXrender pkg-config-fd xorg-xorgproto"
pkg_config_depends=""