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

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