wok view nted/receipt @ rev 25669

Up lapack (3.12.0), less (633), libarchive (3.7.2), liblouis (3.28.0), libmicrohttpd (1.0.1), libpng (1.6.43), libssh (0.10.6), libtasn1 (4.19.0), libtirpc (1.3.4), libvpx (1.14.0), libwebp (1.3.2), logrotate (3.21.0), lua (5.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 25 16:11:20 2024 +0000 (3 months 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 }