wok-next view iasl/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents a3c581bf52b8
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="iasl"
4 VERSION="20100915"
5 CATEGORY="development"
6 SHORT_DESC="Intel ACPI Source Language compiler"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="https://acpica.org/"
11 TARBALL="acpica-unix-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/download/$TARBALL"
14 BUILD_DEPENDS="flex bison"
16 compile_rules() {
17 # Fix building.
18 sed -i -e 's/-Werror//g' compiler/Makefile tools/acpisrc/Makefile
20 cd $src/compiler
21 make -j1 || return 1
22 cd $src/tools/acpisrc
23 make || return 1
24 cd $src/tools/acpixtract
25 make || return 1
27 install -Dm755 $src/compiler/iasl $install/usr/bin/iasl
28 install -Dm755 $src/tools/acpisrc/acpisrc $install/usr/bin/acpisrc
29 install -Dm755 $src/tools/acpixtract/acpixtract $install/usr/bin/acpixtract
30 }
32 genpkg_rules() {
33 copy @std
34 }