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

updated cdrtools (3.00 -> 3.02a09)
author Hans-G?nter Theisgen
date Thu Feb 14 13:10:09 2019 +0100 (2019-02-14)
parents 9e01bc6321ea
children 89c8d8b6cf48
rev   line source
gokhlayeh@9257 1 # SliTaz package receipt.
gokhlayeh@9257 2
gokhlayeh@9257 3 PACKAGE="linux-libre-api-headers"
pascal@20604 4 VERSION="3.18.129-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
pascal@18730 46 [ ! -d "$1/var/lib/tazpkg/installed/linux-libre-headers" ] ||
pascal@18730 47 rm -rf "$1/var/lib/tazpkg/installed/linux-libre-headers"
gokhlayeh@9257 48 }