17ec7bc208
The same header is installed by kernel-libc-headers and seems to be the required one for packages using it. Bump revision. --HG-- extra : convert_revision : fb371fb4d28ac44515849cd57bed15667bc92fd9
22 lines
577 B
Text
22 lines
577 B
Text
# Template file for 'glibc-devel'.
|
|
#
|
|
short_desc="${short_desc} (development files)"
|
|
long_desc="${long_desc}
|
|
|
|
This package contains files for development: headers, static libs, etc."
|
|
|
|
revision=1
|
|
|
|
Add_dependency run glibc
|
|
|
|
do_install()
|
|
{
|
|
mkdir -p ${DESTDIR}/usr/lib
|
|
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
|
|
mv ${SRCPKGDESTDIR}/usr/lib/*.a ${DESTDIR}/usr/lib
|
|
mv ${SRCPKGDESTDIR}/usr/lib/*.so ${DESTDIR}/usr/lib
|
|
mv ${SRCPKGDESTDIR}/usr/lib/*crt1.o ${DESTDIR}/usr/lib
|
|
|
|
# Remove scsi.h, it's installed by kernel-libc-headers.
|
|
rm -f ${DESTDIR}/usr/include/scsi/scsi.h
|
|
}
|