wok view speakup-utils/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 934055de50e2
children
line source
1 # SliTaz package receipt.
3 PACKAGE="speakup-utils"
4 VERSION="3.1.6"
5 CATEGORY="misc"
6 SHORT_DESC="Tiny utilities for controlling the Speakup screenreader"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 SOURCE="speakup"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://linux-speakup.org/"
12 WGET_URL="ftp://linux-speakup.org/pub/speakup/$TARBALL"
14 DEPENDS="linux-speakup"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - http://linux-speakup.org/speakup.git/info/refs 2>/dev/null | \
20 tail -n1 | sed 's|.*tags/v||'
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cd $src/tools
27 install -D -m755 speakupconf "$fs/usr/bin/speakupconf" || return 1
28 install -D -m755 talkwith "$fs/usr/sbin/talkwith" || return 1
29 }