wok diff iasl/receipt @ rev 21553

syslinux/iso2exe,taziso: add slitaz.pif
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 10 19:27:17 2019 +0200 (2019-05-10)
parents 6e8b1bcb30e2
children eccead0c1b9b
line diff
     1.1 --- a/iasl/receipt	Thu Jan 24 11:33:03 2019 +0100
     1.2 +++ b/iasl/receipt	Fri May 10 19:27:17 2019 +0200
     1.3 @@ -1,15 +1,16 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="iasl"
     1.7 -VERSION="20100915"
     1.8 +VERSION="20190215"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Intel ACPI Source Language compiler"
    1.11 +SHORT_DESC="Intel ACPI Source Language compiler."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="other"
    1.14 +WEB_SITE="https://acpica.org"
    1.15 +
    1.16  SOURCE="acpica-unix"
    1.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.18 -WEB_SITE="https://acpica.org"
    1.19 -WGET_URL="$WEB_SITE/download/$TARBALL"
    1.20 +WGET_URL="$WEB_SITE/sites/acpica/files/$TARBALL"
    1.21  
    1.22  BUILD_DEPENDS="flex bison"
    1.23  
    1.24 @@ -17,13 +18,9 @@
    1.25  compile_rules()
    1.26  {
    1.27  	# Fix building.
    1.28 -	sed -i -e 's/-Werror//g' compiler/Makefile tools/acpisrc/Makefile
    1.29 +	sed -i -e 's/-Werror//g'	generate/unix/Makefile.config \
    1.30 +					generate/unix/iasl/Makefile
    1.31  
    1.32 -	cd $src/compiler
    1.33 -	make -j1 || return 1
    1.34 -	cd $src/tools/acpisrc
    1.35 -	make || return 1
    1.36 -	cd $src/tools/acpixtract
    1.37  	make || return 1
    1.38  }
    1.39  
    1.40 @@ -31,8 +28,8 @@
    1.41  genpkg_rules()
    1.42  {
    1.43  	mkdir -p $fs/usr/bin
    1.44 -	cp -a $src/compiler/iasl $fs/usr/bin
    1.45 -	cp -a $src/tools/acpisrc/acpisrc $fs/usr/bin
    1.46 -	cp -a $src/tools/acpixtract/acpixtract $fs/usr/bin
    1.47 +
    1.48 +	cp -a $src/generate/unix/bin/iasl	$fs/usr/bin
    1.49 +	cp -a $src/generate/unix/bin/acpisrc	$fs/usr/bin
    1.50 +	cp -a $src/generate/unix/bin/acpixtract	$fs/usr/bin
    1.51  }
    1.52 -