# HG changeset patch # User Hans-G?nter Theisgen # Date 1682171655 -3600 # Node ID ab6a415fec2b30c0aad3096a336e441426ce2013 # Parent 4494a10c0027e88db1382a40cb35dd6d7a4bc274 created recipes for nted and nted-lang diff -r 4494a10c0027 -r ab6a415fec2b nted-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nted-lang/receipt Sat Apr 22 14:54:15 2023 +0100 @@ -0,0 +1,16 @@ +# SliTaz package receipt. + +PACKAGE="nted-lang" +VERSION="1.10.18" +CATEGORY="localization" +SHORT_DESC="A musical score editor - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2+" +WEB_SITE="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml" + +WANTED="nted" + +genpkg_rules() +{ + cook_copy_folders locale +} diff -r 4494a10c0027 -r ab6a415fec2b nted/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nted/description.txt Sat Apr 22 14:54:15 2023 +0100 @@ -0,0 +1,8 @@ +Nted is a GTK score editor. +It intends to be really WYSIWYG: what you see on the screen +is exactly what you get on printer output. +It supports up to 4 voices per staff, drum notes, +5 lyrics lines, N-Tuplets, context changes, repeats with +alternatives, configurable music instruments per staff, +MIDI and Postscript export, MusicXML import. +Scores can be played through the ALSA sequencer. diff -r 4494a10c0027 -r ab6a415fec2b nted/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nted/receipt Sat Apr 22 14:54:15 2023 +0100 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="nted" +VERSION="1.10.18" +CATEGORY="multimedia" +TAGS="music score" +SHORT_DESC="A musical score editor." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2+" +WEB_SITE="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/sources/$TARBALL" + +SUGGESTED="TiMidity++" # to play the music +DEPENDS="alsa-lib cairo gettext-base gtk+ harfbuzz" +BUILD_DEPENDS="alsa-lib-dev cairo-dev gettext gtk+-dev harfbuzz-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --without-doc \ + --prefix=/usr && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/doc + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/share/doc/nted $fs/usr/share/doc + cp -a $install/usr/share/nted $fs/usr/share +}