wok-next view iasl/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents de49f29b101e
children a3c581bf52b8
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="slaxemulator@gmail.com"
8 LICENSE="other"
9 WEB_SITE="http://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 }