• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

gui/H13-Jul-2021-6,3385,946

img/H03-May-2022-

lv2ttl/H13-Jul-2021-304287

misc/H03-May-2022-874698

robtk/H13-Jul-2021-

src/H13-Jul-2021-710559

.gitmodulesH A D13-Jul-202168 43

COPYINGH A D13-Jul-202117.7 KiB340281

MakefileH A D03-May-202210.5 KiB346262

README.mdH A D13-Jul-2021698 2518

git2lv2.mkH A D13-Jul-20211.4 KiB4429

gridgen.shH A D03-May-20222.7 KiB10688

x42-stepseq.1H A D13-Jul-20211.7 KiB6159

README.md

1stepseq.lv2 - Midi Step Sequencer
2=================================
3
4stepseq.lv2 is simple step sequencer for moddevices.com
5
6Install
7-------
8
9Compiling stepseq requires the LV2 SDK, bash, gnu-make, and a c-compiler.
10
11```bash
12  git clone git://github.com/x42/stepseq.lv2.git
13  cd stepseq.lv2
14  make submodules
15  make
16  sudo make install PREFIX=/usr
17```
18
19Note to packagers: The Makefile honors `PREFIX` and `DESTDIR` variables as well
20as `CFLAGS`, `LDFLAGS` and `OPTIMIZATIONS` (additions to `CFLAGS`), also
21see the first 10 lines of the Makefile.
22
23The number of steps and notes can be set at compile time using `N_NOTES`
24and `N_STEPS` make variables. Both should be at least 4. The default is 8x8.
25