wok view nted/receipt @ rev 25695

sc-im: replaced released version by development version
author Hans-G?nter Theisgen
date Fri Apr 26 08:13:41 2024 +0100 (6 weeks ago)
parents ab6a415fec2b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="nted"
4 VERSION="1.10.18"
5 CATEGORY="multimedia"
6 TAGS="music score"
7 SHORT_DESC="A musical score editor."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL2+"
10 WEB_SITE="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/sources/$TARBALL"
15 SUGGESTED="TiMidity++" # to play the music
16 DEPENDS="alsa-lib cairo gettext-base gtk+ harfbuzz"
17 BUILD_DEPENDS="alsa-lib-dev cairo-dev gettext gtk+-dev harfbuzz-dev"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - $WEB_SITE 2>/dev/null | \
23 sed '/nted-/!d;s|.*nted-||;s|.tar.*||;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 ./configure \
30 --without-doc \
31 --prefix=/usr &&
32 make &&
33 make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share/doc
41 cp -a $install/usr/bin $fs/usr
42 cp -a $install/usr/share/doc/nted $fs/usr/share/doc
43 cp -a $install/usr/share/nted $fs/usr/share
44 }