wok rev 25556

created recipes for nted and nted-lang
author Hans-G?nter Theisgen
date Sat Apr 22 14:54:15 2023 +0100 (12 months ago)
parents 4494a10c0027
children 4ca444413f2c
files nted-lang/receipt nted/description.txt nted/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/nted-lang/receipt	Sat Apr 22 14:54:15 2023 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="nted-lang"
     1.7 +VERSION="1.10.18"
     1.8 +CATEGORY="localization"
     1.9 +SHORT_DESC="A musical score editor - localised messages."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="GPL2+"
    1.12 +WEB_SITE="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml"
    1.13 +
    1.14 +WANTED="nted"
    1.15 +
    1.16 +genpkg_rules()
    1.17 +{
    1.18 +	cook_copy_folders	locale
    1.19 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/nted/description.txt	Sat Apr 22 14:54:15 2023 +0100
     2.3 @@ -0,0 +1,8 @@
     2.4 +Nted is a GTK score editor.
     2.5 +It intends to be really WYSIWYG: what you see on the screen
     2.6 +is exactly what you get on printer output.
     2.7 +It supports up to 4 voices per staff, drum notes,
     2.8 +5 lyrics lines, N-Tuplets, context changes, repeats with
     2.9 +alternatives, configurable music instruments per staff,
    2.10 +MIDI and Postscript export, MusicXML import.
    2.11 +Scores can be played through the ALSA sequencer.
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/nted/receipt	Sat Apr 22 14:54:15 2023 +0100
     3.3 @@ -0,0 +1,37 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="nted"
     3.7 +VERSION="1.10.18"
     3.8 +CATEGORY="multimedia"
     3.9 +TAGS="music score"
    3.10 +SHORT_DESC="A musical score editor."
    3.11 +MAINTAINER="maintainer@slitaz.org"
    3.12 +LICENSE="GPL2+"
    3.13 +WEB_SITE="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml"
    3.14 +
    3.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.16 +WGET_URL="https://vsr.informatik.tu-chemnitz.de/staff/jan/nted/sources/$TARBALL"
    3.17 +
    3.18 +SUGGESTED="TiMidity++"		# to play the music
    3.19 +DEPENDS="alsa-lib cairo gettext-base gtk+ harfbuzz"
    3.20 +BUILD_DEPENDS="alsa-lib-dev cairo-dev gettext gtk+-dev harfbuzz-dev"
    3.21 +
    3.22 +# Rules to configure and make the package.
    3.23 +compile_rules()
    3.24 +{
    3.25 +	./configure		\
    3.26 +		--without-doc	\
    3.27 +		--prefix=/usr &&
    3.28 +	make	&&
    3.29 +	make	install
    3.30 +}
    3.31 +
    3.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.33 +genpkg_rules()
    3.34 +{
    3.35 +	mkdir -p	$fs/usr/share/doc
    3.36 +
    3.37 +	cp -a	$install/usr/bin		$fs/usr
    3.38 +	cp -a	$install/usr/share/doc/nted	$fs/usr/share/doc
    3.39 +	cp -a	$install/usr/share/nted		$fs/usr/share
    3.40 +}