20 lines
423 B
Plaintext
20 lines
423 B
Plaintext
|
# Description: Firmwares for wifi IPW2100 Intel Centrino
|
||
|
# URL: http://ipw2100.sourceforge.net/
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
# Depends on:
|
||
|
|
||
|
name=ipw2100-fw
|
||
|
version=1.3
|
||
|
release=1
|
||
|
|
||
|
source=(http://downloads.nutyx.org/files/$name-$version.tgz)
|
||
|
|
||
|
build() {
|
||
|
for i in *.fw
|
||
|
do
|
||
|
install -D -m 644 $i $PKG/lib/firmware/$i
|
||
|
done
|
||
|
# Install firmware licence
|
||
|
install -D -m 644 LICENSE $PKG/usr/share/licenses/$name/LICENSE
|
||
|
}
|