wok diff iasl/receipt @ rev 7631
Removed a extra quote in one the seds line in virtualbox-ose.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Dec 12 19:58:05 2010 +0000 (2010-12-12) |
parents | |
children | a296570a1223 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/iasl/receipt Sun Dec 12 19:58:05 2010 +0000 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="iasl" 1.7 +VERSION="20100915" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Intel ACPI Source Language compiler" 1.10 +MAINTAINER="slaxemulator@gmail.com" 1.11 +BUILD_DEPENDS="flex bison" 1.12 +SOURCE="acpica-unix" 1.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.14 +WEB_SITE="http://acpica.org" 1.15 +WGET_URL="$WEB_SITE/download/$TARBALL" 1.16 + 1.17 +# Rules to configure and make the package. 1.18 +compile_rules() 1.19 +{ 1.20 + cd $src/compiler 1.21 + make 1.22 + cd $src/tools/acpisrc 1.23 + make 1.24 + cd $src/tools/acpixtract 1.25 + make 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + mkdir -p $fs/usr/bin 1.32 + cp -a $src/compiler/iasl $fs/usr/bin 1.33 + cp -a $src/tools/acpisrc/acpisrc $fs/usr/bin 1.34 + cp -a $src/tools/acpixtract/acpixtract $fs/usr/bin 1.35 +} 1.36 +