wok annotate linux-libre-api-headers/receipt @ rev 12880

Remove slitaz-fbsplash (broken)
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 25 19:46:33 2012 +0200 (2012-05-25)
parents 903c03d31ebf
children 03a6791abff6
rev   line source
gokhlayeh@9257 1 # SliTaz package receipt.
gokhlayeh@9257 2
gokhlayeh@9257 3 PACKAGE="linux-libre-api-headers"
gokhlayeh@9257 4 VERSION="2.6.37-libre"
gokhlayeh@9257 5 CATEGORY="development"
gokhlayeh@9257 6 SHORT_DESC="Kernel headers sanitized for use in userspace."
gokhlayeh@9257 7 MAINTAINER="gokhlayeh@slitaz.org"
gokhlayeh@9257 8 PROVIDE="linux-api-headers"
gokhlayeh@11401 9 SOURCE="linux"
gokhlayeh@9259 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
gokhlayeh@9257 11 WEB_SITE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
gokhlayeh@9257 12 WGET_URL="http://www.fsfla.org/svnwiki/selibre/linux-libre/download/releases/$VERSION/$TARBALL"
gokhlayeh@9257 13
gokhlayeh@9257 14 # Rules to compile & install the temporary toolchain.
gokhlayeh@9257 15 cook_tmp_toolchain()
gokhlayeh@9257 16 {
gokhlayeh@9257 17 cd $src
gokhlayeh@9257 18 make mrproper &&
gokhlayeh@9257 19 make headers_check &&
gokhlayeh@9257 20 make INSTALL_HDR_PATH=dest headers_install &&
gokhlayeh@9257 21 cp -r dest/include/* /tools/include
gokhlayeh@9257 22 }
gokhlayeh@9257 23
gokhlayeh@9257 24 # Rules to configure and make the package.
gokhlayeh@9257 25 compile_rules()
gokhlayeh@9257 26 {
gokhlayeh@9257 27 cd $src
gokhlayeh@9257 28 make mrproper &&
gokhlayeh@9257 29 make headers_check &&
gokhlayeh@9257 30 make INSTALL_HDR_PATH=$DESTDIR/usr headers_install
gokhlayeh@9257 31 }
gokhlayeh@9257 32
gokhlayeh@9257 33 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@9257 34 genpkg_rules()
gokhlayeh@9257 35 {
gokhlayeh@9257 36 mkdir -p $fs/usr
gokhlayeh@9257 37 cp -a $_pkg/usr/include $fs/usr
gokhlayeh@9257 38 rm -f $(find ${fs} -name .install -or -name ..install.cmd)
gokhlayeh@9257 39 }
gokhlayeh@9257 40
gokhlayeh@9257 41 # Post install commands for Tazpkg.
gokhlayeh@9257 42 post_install()
gokhlayeh@9257 43 {
gokhlayeh@9257 44 # Removed old linux-libre-headers
gokhlayeh@9257 45 rm -rf $1/var/lib/tazpkg/installed/linux-libre-headers 2>/dev/null
gokhlayeh@9257 46 }