diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-23 03:40:09 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-23 03:40:09 +0000 |
commit | 1a04b89cbb8e27e4622005c896745498af51ef45 (patch) | |
tree | 5991cef855e2a5ae07d66cccd5b47ba681007483 /community/iasl | |
parent | c9e4976968b0f847cc693453df1e947531af2e76 (diff) |
Thu Jan 23 03:35:13 UTC 2014
Diffstat (limited to 'community/iasl')
-rw-r--r-- | community/iasl/PKGBUILD | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/community/iasl/PKGBUILD b/community/iasl/PKGBUILD index d2c0bc5fd..474085f09 100644 --- a/community/iasl/PKGBUILD +++ b/community/iasl/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 96438 2013-08-28 21:10:55Z lcarlier $ +# $Id: PKGBUILD 104510 2014-01-22 06:49:46Z lcarlier $ # Maintainer : Laurent Carlier <lordheavym@gmail.com> # Contributor: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Alessio 'mOlOk' Bolognino <themolok@gmail.com> pkgname=iasl -pkgver=20130823 +pkgver=20140114 pkgrel=1 pkgdesc="Intel ACPI Source Language compiler" arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ options=('!makeflags') #install=iasl.install source=(http://acpica.org/sites/acpica/files/acpica-unix-${pkgver}.tar.gz LICENSE) -md5sums=('7846a62551352d7dae6f93f8255e9d99' +md5sums=('77d5aaa723b98314dae80cac1b33514d' '8615526144f69ea4e870d9bc37df9b29') build() { @@ -24,11 +24,14 @@ build() { #sed -i -e 's/_CYGWIN/_LINUX/g' -e 's/-Werror//g' Makefile.config - if [[ $CARCH == i686 ]]; then - make BITS=32 - else - make BITS=64 - fi + make clean + make + +# if [[ $CARCH == i686 ]]; then +# make BITS=32 +# else +# make BITS=64 +# fi } package() { @@ -38,5 +41,3 @@ package() { install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } -md5sums=('cc7528ecd185ff779c6b58bfede091b2' - '8615526144f69ea4e870d9bc37df9b29') |