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

..03-May-2022-

doc/H03-May-2022-2,9072,825

m4/H03-May-2022-2,2962,102

po/H03-May-2022-1,9931,593

src/H03-May-2022-11,7078,457

ABOUT-NLSH A D13-Jun-200437.6 KiB626581

AUTHORSH A D25-Jun-200237 31

COPYINGH A D12-May-200217.6 KiB341281

ChangeLogH A D15-Jun-200438.4 KiB890884

INSTALLH A D25-Jun-20027.6 KiB183143

Makefile.amH A D13-Jun-2004403 127

Makefile.inH A D03-May-202214 KiB439362

NEWSH A D29-Jan-20031.6 KiB3231

READMEH A D15-Jun-20041.5 KiB6038

THANKSH A D16-Feb-2003582 129

TODOH A D15-Jun-20044.5 KiB11383

acinclude.m4H A D16-Feb-20031.9 KiB5654

aclocal.m4H A D15-Jun-200498.5 KiB2,6822,482

config.guessH A D17-Apr-200438.8 KiB1,3551,168

config.h.inH A D15-Jun-20042.4 KiB9464

config.rpathH A D13-Jun-200414.6 KiB549443

config.subH A D17-Apr-200428.8 KiB1,4611,320

configureH A D03-May-2022222.9 KiB7,5066,286

configure.inH A D13-Jun-20043.8 KiB145114

depcompH A D17-Apr-200411.8 KiB412275

install-shH A D17-Apr-20045.5 KiB252153

missingH A D17-Apr-20048.6 KiB284224

mkinstalldirsH A D17-Apr-2004722 4123

README

1This software is released under the GNU General Public License. See the file
2named COPYING for details.
3
4Further information can be found in the doc directory
5
6                         ----ooooOOOOoooo----
7
8Generic installation instructions can be found in the file named INSTALL.
9
10Briefly, it's just:
11
12$ ./configure
13$ make
14
15and
16
17$ make install
18
19to install the plugins.
20
21It is assumed that the LADSPA SDK is installed under /usr - you can change
22this by supplying the path to configure using --with-ladspa-prefix.
23
24If you want the plugins to be installed somewhere in particular, use the
25--with-ladspa-plugin-dir option (make sure that the path supplied is in your
26$LADSPA_PATH!)
27
28If you want smaller wavedata, use the --enable-small-wavedata option. This
29trades off accuracy against size. It still sounds good though...
30
31Finally, if you already have plugins with the same name as any of the blop
32plugins, you can use --program-prefix=blop_ (or something else) to ensure
33the existing ones are not overwritten. Alternatively, just put them in a new
34directory....
35
36If you have installed liblrdf, there is an rdf metadata file: doc/blop.rdf - copy
37this to wherever you keep your rdf's
38
39
40                         ----ooooOOOOoooo----
41Building from CVS:
42
43Versions:
44autoconf 2.58
45automake 1.5
46gettext 0.12.1
47
48After initial checkout, you need to run gettextize to set up symlinks to installed
49gettext bits and pieces:
50
51$ gettextize -f --no-changelog
52
53You'll then need to prepare the build cruft:
54
55$ aclocal -I m4
56$ autoheader
57$ autoconf
58$ automake -a
59
60