diff options
author | Jose V Beneyto <sepen@crux.nu> | 2012-12-11 21:57:20 +0100 |
---|---|---|
committer | Jose V Beneyto <sepen@crux.nu> | 2012-12-13 13:46:21 +0100 |
commit | 36216abfb55665c5f921f5040d517f72a8aaa8a5 (patch) | |
tree | 2deaf3bdc658e1d5b76e1eb63f60f8eb436724d4 /iasl | |
parent | 5875fa80ba0bfee95019117bd46f7727281a152e (diff) | |
download | contrib-36216abfb55665c5f921f5040d517f72a8aaa8a5.tar.gz contrib-36216abfb55665c5f921f5040d517f72a8aaa8a5.tar.xz |
iasl: updated to 20121114
Diffstat (limited to 'iasl')
-rw-r--r-- | iasl/.md5sum | 2 | ||||
-rw-r--r-- | iasl/Pkgfile | 13 |
2 files changed, 8 insertions, 7 deletions
diff --git a/iasl/.md5sum b/iasl/.md5sum index e98a8ae82..f928c24fe 100644 --- a/iasl/.md5sum +++ b/iasl/.md5sum @@ -1 +1 @@ -68becae1d8a6f5b59f15516cf8001b38 acpica-unix-20120320.tar.gz +aa553461d80aa00ec7821b47134e098e acpica-unix-20121114.tar.gz diff --git a/iasl/Pkgfile b/iasl/Pkgfile index d217789d6..dc1fe870c 100644 --- a/iasl/Pkgfile +++ b/iasl/Pkgfile @@ -5,14 +5,15 @@ # Depends on: name=iasl -version=20120320 +version=20121114 release=1 source=(http://www.acpica.org/download/acpica-unix-$version.tar.gz) build() { - cd acpica-unix-$version/source/compiler - make -j1 aslcompilerlex.c - sed 's/\#undef\ yytext_ptr//' -i aslcompilerlex.c - make -j1 - install -D -m 0755 $name $PKG/usr/bin/$name + cd acpica-unix-$version + + make clean + make BITS=32 HOST=_LINUX + + install -D -m 0755 generate/unix/bin32/$name $PKG/usr/bin/$name } |