wok view usbids/receipt @ rev 24347

Up expat (2.4.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 02 09:41:22 2022 +0000 (2022-02-02)
parents 3b2652bb1db8
children 7aaca7142a16
line source
1 # SliTaz package receipt.
3 PACKAGE="usbids"
4 VERSION="20211224"
5 CATEGORY="misc"
6 SHORT_DESC="List of USB ID's."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="PublicDomain"
9 WEB_SITE="http://www.linux-usb.org/usb-ids.html"
11 TARBALL="usb-$VERSION.ids.gz"
12 WGET_URL="http://www.linux-usb.org/usb.ids.gz"
14 BUILD_DEPENDS="advancecomp"
16 HOST_ARCH="i486 arm"
18 current_version()
19 {
20 wget -O - http://www.linux-usb.org/usb.ids 2>/dev/null | \
21 sed '/^# Version/!d;s|.*: ||;s|\.||g;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 advdef -z4 usb-$VERSION.ids.gz
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/misc
34 cp $src/usb-$VERSION.ids.gz $fs/usr/share/misc/usb.ids.gz
35 }