1SUMMARY="A minimal pattern-based MIDI sequencer"
2DESCRIPTION="nanodot is a rather minimal pattern-based MIDI sequencer \
3originally written for BeOS R3. Its main purpose in life was/is to teach me \
4(and hopefully others) the basics of writing MIDI apps for BeOS; it makes for \
5a nice drum-programming 'scratchpad', and is a generally entertaining way to \
6waste a few hours."
7HOMEPAGE="https://github.com/HaikuArchives/NanoDot"
8COPYRIGHT="1999 Eric Moon"
9LICENSE="unknown"
10REVISION="1"
11srcGitRev="e201c46fdcb97ee919393f0f6eb8106eb51a0797"
12SOURCE_URI="https://github.com/HaikuArchives/NanoDot/archive/$srcGitRev.tar.gz"
13CHECKSUM_SHA256="f12538e765a13f30d5dd2ef344da14b682a348fd48ffa2e2e5819c0d6722f19c"
14SOURCE_FILENAME="NanoDot-$portVersion-$srcGitRev.tar.gz"
15SOURCE_DIR="NanoDot-$srcGitRev"
16
17ARCHITECTURES="all"
18
19PROVIDES="
20	nanodot = $portVersion
21	app:nanodot = $portVersion
22	"
23REQUIRES="
24	haiku
25	"
26
27BUILD_REQUIRES="
28	haiku_devel
29	"
30BUILD_PREREQUIRES="
31	makefile_engine
32	cmd:g++
33	cmd:make
34	"
35
36BUILD()
37{
38	make OBJ_DIR=objects
39}
40
41INSTALL()
42{
43	install -d $appsDir
44	install -t $appsDir objects/NanoDot
45	addAppDeskbarSymlink $appsDir/NanoDot NanoDot
46}
47