84222395b8
These new vars are DESTDIR (by default XBPS_DESTDIR/pkgname-version), SRCPKGDESTDIR (XBPS_DESTDIR/sourcepkg-version) and FILESDIR (XBPS_TEMPLATESDIR/pkgname/files). This simplifies packages that used them. --HG-- extra : convert_revision : 287ea7128cb5df19870ca7aff0a3b8f99a11d63a
20 lines
575 B
Text
20 lines
575 B
Text
# 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()
|
|
{
|
|
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
|
|
}
|