Date: Wednesday, November 2, 2011 @ 07:26:26 Author: pierre Revision: 141687
archrelease: copy trunk to testing-any Added: ipw2100-fw/repos/testing-any/ ipw2100-fw/repos/testing-any/PKGBUILD (from rev 141686, ipw2100-fw/trunk/PKGBUILD) ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Copied: ipw2100-fw/repos/testing-any/PKGBUILD (from rev 141686, ipw2100-fw/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2011-11-02 11:26:26 UTC (rev 141687) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Thomas Baechler <tho...@archlinux.org> +# Contributor: Giovanni Scafora <giova...@archlinux.org> + +pkgname=ipw2100-fw +pkgver=1.3 +pkgrel=6 +pkgdesc="Intel Centrino Drivers firmware for IPW2100" +arch=('any') +url="http://ipw2100.sourceforge.net/" +license=('custom') +replaces=('ipw2100') +source=("http://bughost.org/firmware/${pkgname}-${pkgver}.tgz") +md5sums=('46aa75bcda1a00efa841f9707bbbd113') + +package() { + cd "${srcdir}" + + # Install firmware + for i in *.fw + do + install -D -m 644 $i "${pkgdir}/lib/firmware/$i" + done + # Install license + install -D -m 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +}