wok-next annotate iasl/receipt @ rev 21525

updated bluez (5.48 -> 5.54)
author Hans-G?nter Theisgen
date Fri Jun 19 14:18:19 2020 +0100 (2020-06-19)
parents a3c581bf52b8
children
rev   line source
al@20473 1 # SliTaz package receipt v2.
slaxemulator@6985 2
slaxemulator@6985 3 PACKAGE="iasl"
slaxemulator@6985 4 VERSION="20100915"
slaxemulator@6985 5 CATEGORY="development"
slaxemulator@6985 6 SHORT_DESC="Intel ACPI Source Language compiler"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15600 8 LICENSE="other"
al@20906 9 WEB_SITE="https://acpica.org/"
al@20473 10
al@20473 11 TARBALL="acpica-unix-$VERSION.tar.gz"
slaxemulator@6985 12 WGET_URL="$WEB_SITE/download/$TARBALL"
slaxemulator@6985 13
pascal@15600 14 BUILD_DEPENDS="flex bison"
pascal@15600 15
al@20473 16 compile_rules() {
gokhlayeh@11397 17 # Fix building.
gokhlayeh@11397 18 sed -i -e 's/-Werror//g' compiler/Makefile tools/acpisrc/Makefile
gokhlayeh@11397 19
slaxemulator@6985 20 cd $src/compiler
gokhlayeh@8003 21 make -j1 || return 1
slaxemulator@6985 22 cd $src/tools/acpisrc
gokhlayeh@8003 23 make || return 1
slaxemulator@6985 24 cd $src/tools/acpixtract
gokhlayeh@8003 25 make || return 1
al@20473 26
al@20473 27 install -Dm755 $src/compiler/iasl $install/usr/bin/iasl
al@20473 28 install -Dm755 $src/tools/acpisrc/acpisrc $install/usr/bin/acpisrc
al@20473 29 install -Dm755 $src/tools/acpixtract/acpixtract $install/usr/bin/acpixtract
slaxemulator@6985 30 }
slaxemulator@6985 31
al@20473 32 genpkg_rules() {
al@20473 33 copy @std
slaxemulator@6985 34 }