wok-6.x view nted/receipt @ rev 25556

created recipes for nted and nted-lang
author Hans-G?nter Theisgen
date Sat Apr 22 14:54:15 2023 +0100 (13 months ago)
parents
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 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --without-doc \
24 --prefix=/usr &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/doc
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/share/doc/nted $fs/usr/share/doc
36 cp -a $install/usr/share/nted $fs/usr/share
37 }