2009-02-25 06:15:20 +01:00
|
|
|
# Template file for 'klibc-utils'.
|
|
|
|
#
|
|
|
|
short_desc="${short_desc} (binary utilities)"
|
|
|
|
long_desc="${long_desc}
|
|
|
|
|
|
|
|
This package contains the binary programs built with klibc
|
|
|
|
for use on the initramfs."
|
|
|
|
|
|
|
|
Add_dependency run klibc
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
2009-03-11 06:31:56 +01:00
|
|
|
mkdir -p ${DESTDIR}/usr/lib/klibc
|
|
|
|
rm -f ${SRCPKGDESTDIR}/usr/lib/klibc/bin/kinit
|
|
|
|
mv ${SRCPKGDESTDIR}/usr/lib/klibc/bin/kinit.shared \
|
|
|
|
${SRCPKGDESTDIR}/usr/lib/klibc/bin/kinit
|
|
|
|
mv ${SRCPKGDESTDIR}/usr/lib/klibc/bin/sh.shared \
|
|
|
|
${SRCPKGDESTDIR}/usr/lib/klibc/bin/sh
|
|
|
|
mv ${SRCPKGDESTDIR}/usr/lib/klibc/bin ${DESTDIR}/usr/lib/klibc
|
2009-02-25 06:15:20 +01:00
|
|
|
}
|