wok view beep/receipt @ rev 25734

updated sc-im (-> 0.8.4)
author Hans-G?nter Theisgen
date Thu Aug 22 14:48:42 2024 +0100 (5 weeks ago)
parents 9af0e03b8ad0
children
line source
1 # SliTaz package receipt.
3 PACKAGE="beep"
4 VERSION="1.4.12"
5 CATEGORY="system-tools"
6 SHORT_DESC="Advanced pc-speaker beeper."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/spkr-beep/beep"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/spkr-beep/beep/archive/refs/tags/v$VERSION.tar.gz"
13 # What is the latest version available today?
14 current_version()
15 {
16 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
17 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
18 }
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 sed -i 's|secure_getenv|getenv|' beep-log.c
24 make
26 cook_pick_manpages beep.1
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 cp -a $src/beep $fs/usr/bin
34 }
36 post_remove()
37 {
38 ln -s /bin/busybox "$1/usr/bin/beep"
39 }