wok-current view firmware/receipt @ rev 25792
Fix openbox menu, label keymap on lxpanel and add miss it translation for tazpkg
| author | Stanislas Leduc <shann@slitaz.org> | 
|---|---|
| date | Tue Oct 07 05:55:24 2025 +0000 (3 weeks ago) | 
| parents | 5926178cd6fa | 
| children | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="firmware"
     4 VERSION="20240610"
     5 CATEGORY="meta"
     6 SHORT_DESC="Firmware files for Linux"
     7 MAINTAINER="mojo@slitaz.org"
     8 LICENSE="other"
     9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    10 WEB_SITE="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git"
    11 WGET_URL="git|git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"
    12 BRANCH="$VERSION"
    13 BUILD_DEPENDS="git coreutils-multicall rdfind"
    15 HOST_ARCH="i486 x86_64"
    17 # What is the latest version available today?
    18 current_version()
    19 {
    20 	wget -O - $WEB_SITE 2>/dev/null | \
    21 	sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
    22 }
    24 # Rules to configure and make the package.
    25 compile_rules()
    26 {
    27 	make install	
    28 }
    30 # Rules to gen a SliTaz package suitable for Tazpkg.
    31 genpkg_rules()
    32 {
    33 	mkdir -p $install/usr/share/licenses
    34         cp -a $src/LICENCE.* $install/usr/share/licenses
    35 }