# HG changeset patch # User Christopher Rogers # Date 1288321376 0 # Node ID fa443372e01a8af7f0611531238611c12eb96145 # Parent 1111d4610860405c93557211c2daa2b90fba0390 Added iasl. Needed to build virtualbox-ose. diff -r 1111d4610860 -r fa443372e01a iasl/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/iasl/receipt Fri Oct 29 03:02:56 2010 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="iasl" +VERSION="20100915" +CATEGORY="development" +SHORT_DESC="Intel ACPI Source Language compiler" +MAINTAINER="slaxemulator@gmail.com" +BUILD_DEPENDS="flex bison" +SOURCE="acpica-unix" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://acpica.org" +WGET_URL="$WEB_SITE/download/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src/compiler + make + cd $src/tools/acpisrc + make + cd $src/tools/acpixtract + make +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/compiler/iasl $fs/usr/bin + cp -a $src/tools/acpisrc/acpisrc $fs/usr/bin + cp -a $src/tools/acpixtract/acpixtract $fs/usr/bin +} +