wok view cddetect/receipt @ rev 24915

updated monitorix (3.12.0 -> 3.14.0)
author Hans-G?nter Theisgen
date Sat Apr 09 16:53:38 2022 +0100 (2022-04-09)
parents 2a0479881723
children 0c82700f4deb
line source
1 # SliTaz package receipt.
3 PACKAGE="cddetect"
4 VERSION="2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Tries to detect the type of a CD/DVD without mounting it"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.bellut.net/projects.html#cddetect"
11 WGET_URL="http://www.bellut.net/files/$TARBALL"
12 TAGS="CD DVD"
14 # What is the latest version available today?
15 current_version()
16 {
17 wget -O - http://www.bellut.net/projects.html 2>/dev/null | \
18 sed '/cddetect-[0-9]/!d;s|.*cddetect-||;s|.t.*||;q'
19 }
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 #sed -i 's|-Wall|& -Wno-pointer-sign|' Makefile
25 sed -i 's/<stdio.h>/&\n#include <limits.h>/' cddetect.c
26 make
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 cp $src/cddetect $fs/usr/bin
34 }