2008-12-17 09:12:33 +01:00
|
|
|
# Template file for 'kernel-libc-headers'
|
2010-04-21 15:50:05 +02:00
|
|
|
. ${XBPS_SRCPKGDIR}/kernel/common-vars
|
|
|
|
|
2008-12-17 09:12:33 +01:00
|
|
|
pkgname=kernel-libc-headers
|
|
|
|
short_desc="The Linux kernel headers for development"
|
2008-10-23 17:14:00 +02:00
|
|
|
long_desc="
|
|
|
|
This package provides the linux kernel headers for use in userspace."
|
2008-10-27 07:42:40 +01:00
|
|
|
|
2011-07-06 08:16:56 +02:00
|
|
|
bootstrap=yes
|
2009-12-04 00:25:09 +01:00
|
|
|
nostrip=yes
|
2011-10-25 13:16:48 +02:00
|
|
|
noverifyrdeps=yes
|
2010-10-24 09:02:46 +02:00
|
|
|
|
2011-07-06 23:17:34 +02:00
|
|
|
if [ -n "$BOOTSTRAP_PKG_REBUILD" ]; then
|
|
|
|
Add_dependency build perl ">=0"
|
|
|
|
fi
|
|
|
|
|
2010-10-24 09:02:46 +02:00
|
|
|
do_build()
|
|
|
|
{
|
2011-07-11 13:21:02 +02:00
|
|
|
env LANG=C make headers_check
|
2010-10-24 09:02:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
2011-07-11 13:21:02 +02:00
|
|
|
env LANG=C make INSTALL_HDR_PATH=${DESTDIR}/usr headers_install
|
2010-10-24 09:02:46 +02:00
|
|
|
# Install scsi/scsi.h header, required by eject and others.
|
2011-03-26 11:19:48 +01:00
|
|
|
sed -i -e "/^\#include <linux\/scatterlist.h>$/d" include/scsi/scsi.h
|
|
|
|
install -m644 include/scsi/scsi.h ${DESTDIR}/usr/include/scsi
|
2010-10-24 09:02:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# Remove unused files.
|
|
|
|
rm -f $(find ${DESTDIR}/usr/include -name .install -or -name ..install.cmd)
|
|
|
|
}
|