60 lines
1.9 KiB
Text
60 lines
1.9 KiB
Text
# Template file for 'glibc32'
|
|
pkgname=glibc32
|
|
version=2.16.0
|
|
revision=5
|
|
distfiles="
|
|
http://xbps.hosting-unlimited.org/binpkgs/i686/glibc-${version}_${revision}.i686.xbps
|
|
http://xbps.hosting-unlimited.org/binpkgs/i686/glibc-devel-${version}_${revision}.i686.xbps"
|
|
depends="glibc>=$version"
|
|
makedepends="bsdtar"
|
|
short_desc="The GNU C library (32 bits)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum="
|
|
5db9e003deb8468ea6a38e8b87202ba9fc5e5077bad3825b4b9c64b6f03b418e
|
|
893b25374bdf5d8198afa79b5b7d980e7fd82e4e54f3c33e2057c15a30619c41"
|
|
long_desc="
|
|
The GNU C Library is the standard system C library for all GNU systems,
|
|
and is an important part of what makes up a GNU system. It provides the
|
|
system API for all programs written in C and C-compatible languages such
|
|
as C++ and Objective C; the runtime facilities of other programming
|
|
languages use the C library to access the underlying operating system.
|
|
|
|
This package installs the 32 bit libraries for x86_64 systems."
|
|
|
|
subpackages="${pkgname}-devel"
|
|
nostrip=yes
|
|
noextract=yes
|
|
noverifyrdeps=yes
|
|
only_for_archs=x86_64
|
|
|
|
do_install() {
|
|
for f in ${distfiles}; do
|
|
local srcfile="${XBPS_SRCDISTDIR}/$(basename ${f})"
|
|
bsdtar xf ${srcfile} -C ${wrksrc}
|
|
done
|
|
|
|
vinstall usr/include/gnu/stubs-32.h 644 usr/include/gnu
|
|
|
|
vmkdir usr/lib
|
|
vmkdir usr/lib32/gconv
|
|
vcopy "lib/*.so*" usr/lib32
|
|
vcopy "usr/lib/gconv/*" usr/lib32/gconv
|
|
|
|
cd ${DESTDIR}/usr/lib && ln -sf ../lib32/ld-linux.so.2 .
|
|
cd ${wrksrc}
|
|
|
|
install -m644 usr/lib/*.{a,o} ${DESTDIR}/usr/lib32
|
|
install -m755 usr/lib/*.so ${DESTDIR}/usr/lib32
|
|
|
|
# Add /lib32 and /usr/lib32 into ld.so(8) cache.
|
|
install -d ${DESTDIR}/etc/ld.so.conf.d
|
|
echo "/usr/lib32" > ${DESTDIR}/etc/ld.so.conf.d/glibc32.conf
|
|
|
|
chmod 644 ${DESTDIR}/etc/ld.so.conf.d/glibc32.conf && ldconfig
|
|
|
|
# Fix some .so files to find stuff in lib32 dirs.
|
|
for f in libc libpthread; do
|
|
sed -i -e "s|/lib/|/lib32/|g" \
|
|
${DESTDIR}/usr/lib32/${f}.so
|
|
done
|
|
}
|