wok annotate linux-api-headers/receipt @ rev 14351

linux: add EXTRA_SOURCE_FILES
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 15 11:49:30 2013 +0200 (2013-04-15)
parents 25e3e67211d0
children ad59999b3fce
rev   line source
slaxemulator@6654 1 # SliTaz package receipt.
slaxemulator@6654 2
slaxemulator@6654 3 PACKAGE="linux-api-headers"
pascal@14175 4 VERSION="3.2.40"
pankso@12268 5 KBASEVER="${VERSION:0:3}"
slaxemulator@6654 6 CATEGORY="development"
slaxemulator@6654 7 SHORT_DESC="Kernel headers sanitized for use in userspace."
slaxemulator@6654 8 MAINTAINER="devel@slitaz.org"
slaxemulator@6654 9 SOURCE="linux"
pankso@12268 10 TARBALL="$SOURCE-$KBASEVER.tar.xz"
slaxemulator@6654 11 WEB_SITE="http://www.kernel.org/"
pankso@12268 12 WGET_URL="http://www.kernel.org/pub/linux/kernel/v3.0/$TARBALL"
pascal@12841 13 PROVIDE="linux-headers"
pankso@12268 14
pascal@14181 15 BUILD_DEPENDS="bash wget"
pankso@12268 16
pascal@14351 17 [ "$KBASEVER" != "$VERSION" ] &&
pascal@14351 18 PATCH="$(dirname $WGET_URL)/patch-$VERSION.xz" &&
pascal@14351 19 EXTRA_SOURCE_FILES="$(basename $PATCH)"
slaxemulator@6654 20
gokhlayeh@8196 21 # Rules to compile & install the temporary toolchain.
gokhlayeh@8196 22 cook_tmp_toolchain()
gokhlayeh@8196 23 {
gokhlayeh@8196 24 cd $src
gokhlayeh@8196 25 make mrproper &&
gokhlayeh@8196 26 make headers_check &&
gokhlayeh@8196 27 make INSTALL_HDR_PATH=dest headers_install &&
gokhlayeh@8196 28 cp -r dest/include/* /tools/include
gokhlayeh@8196 29 }
gokhlayeh@8196 30
slaxemulator@6654 31 # Rules to configure and make the package.
slaxemulator@6654 32 compile_rules()
slaxemulator@6654 33 {
slaxemulator@6654 34 cd $src
pankso@12268 35
pankso@12268 36 if [ "$KBASEVER" != "$VERSION" ]; then
pascal@14181 37 [ -s $SRC/$(basename $PATCH) ] ||
pascal@14181 38 wget --no-check-certificate $PATCH -O $SRC/$(basename $PATCH)
pascal@14181 39 xzcat $SRC/$(basename $PATCH) | patch -Np1
pascal@14181 40 touch done.patch-$VERSION
pankso@12268 41 fi
pankso@12268 42
gokhlayeh@8196 43 make mrproper &&
gokhlayeh@8196 44 make headers_check &&
gokhlayeh@8196 45 make INSTALL_HDR_PATH=$DESTDIR/usr headers_install
slaxemulator@6654 46 }
slaxemulator@6654 47
slaxemulator@6654 48 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@6654 49 genpkg_rules()
slaxemulator@6654 50 {
slaxemulator@6654 51 mkdir -p $fs/usr
slaxemulator@6654 52 cp -a $_pkg/usr/include $fs/usr
slaxemulator@6654 53 rm -f $(find ${fs} -name .install -or -name ..install.cmd)
slaxemulator@6654 54 }
slaxemulator@6654 55
slaxemulator@6654 56 # Post install commands for Tazpkg.
slaxemulator@6654 57 post_install()
slaxemulator@6654 58 {
slaxemulator@6654 59 # Removed old linux-headers
pankso@12268 60 rm -rf ${1}${INSTALLED}/linux-headers 2>/dev/null
slaxemulator@6654 61 }