wok annotate firmware/receipt @ rev 9153
Add firmware receipt. This is firmware that can be repackage. As long as the license is in the package we are in the clear. NOTE: There is a lot more wanted packages for this to come.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Mar 07 02:21:03 2011 +0000 (2011-03-07) |
parents | |
children | 4ab8208338fc |
rev | line source |
---|---|
slaxemulator@9153 | 1 # SliTaz package receipt. |
slaxemulator@9153 | 2 |
slaxemulator@9153 | 3 PACKAGE="firmware" |
slaxemulator@9153 | 4 VERSION="20110227" |
slaxemulator@9153 | 5 CATEGORY="meta" |
slaxemulator@9153 | 6 SHORT_DESC="Firmware files for Linux" |
slaxemulator@9153 | 7 MAINTAINER="slaxemulator@gmail.com" |
slaxemulator@9153 | 8 TARBALL="$PACKAGE-$VERSION.tar.xz" |
slaxemulator@9153 | 9 WEB_SITE="http://git.kernel.org/?p=linux/kernel/git/dwmw2/linux-firmware.git;a=summary" |
slaxemulator@9153 | 10 WGET_URL="ftp://ftp.archlinux.org/other/linux-firmware/$TARBALL" |
slaxemulator@9153 | 11 |
slaxemulator@9153 | 12 # Rules to configure and make the package. |
slaxemulator@9153 | 13 compile_rules() |
slaxemulator@9153 | 14 { |
slaxemulator@9153 | 15 mkdir -p $DESTDIR/lib/firmware |
slaxemulator@9153 | 16 cp -a $src/* $DESTDIR/lib/firmware |
slaxemulator@9153 | 17 } |
slaxemulator@9153 | 18 |
slaxemulator@9153 | 19 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@9153 | 20 genpkg_rules() |
slaxemulator@9153 | 21 { |
slaxemulator@9153 | 22 mkdir -p $fs/lib/firmware |
slaxemulator@9153 | 23 } |
slaxemulator@9153 | 24 |