wok view iasl/receipt @ rev 20674

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 18:16:34 2019 +0100 (2019-01-24)
parents de49f29b101e
children 7f35f94ea79f
line source
1 # SliTaz package receipt.
3 PACKAGE="iasl"
4 VERSION="20100915"
5 CATEGORY="development"
6 SHORT_DESC="Intel ACPI Source Language compiler"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="other"
9 SOURCE="acpica-unix"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://acpica.org"
12 WGET_URL="$WEB_SITE/download/$TARBALL"
14 BUILD_DEPENDS="flex bison"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # Fix building.
20 sed -i -e 's/-Werror//g' compiler/Makefile tools/acpisrc/Makefile
22 cd $src/compiler
23 make -j1 || return 1
24 cd $src/tools/acpisrc
25 make || return 1
26 cd $src/tools/acpixtract
27 make || return 1
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp -a $src/compiler/iasl $fs/usr/bin
35 cp -a $src/tools/acpisrc/acpisrc $fs/usr/bin
36 cp -a $src/tools/acpixtract/acpixtract $fs/usr/bin
37 }