aboutsummaryrefslogtreecommitdiff
path: root/abstractions
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-30 07:03:19 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-30 07:03:19 +0000
commit9cf2c9d4f466dfd9ae81bdae9aace2effbe5a5e5 (patch)
tree1db59bfe2e2c4eedca51c33c94448114ae649d0f /abstractions
parentf7d28b65ad3287d8157c914f24e4003b8d5739b7 (diff)
preparing for RC6, bug fixes and tweaks, things are look ing good
svn path=/trunk/; revision=4086
Diffstat (limited to 'abstractions')
-rw-r--r--abstractions/Makefile17
-rwxr-xr-xabstractions/Makefile.buildlayout2
-rw-r--r--abstractions/README17
3 files changed, 13 insertions, 23 deletions
diff --git a/abstractions/Makefile b/abstractions/Makefile
index a8ef72bd..52da7d0e 100644
--- a/abstractions/Makefile
+++ b/abstractions/Makefile
@@ -201,12 +201,12 @@ pixeltango_install:
install -d $(objectsdir)/$(PIXELTANGO_NAME)
install -p $(abstractions_src)/pixelTANGO/abstractions/*.pd \
$(objectsdir)/$(PIXELTANGO_NAME)
- install -d $(objectsdir)/$(PIXELTANGO_NAME)/fx
install -p $(abstractions_src)/pixelTANGO/abstractions/fx/*.pd \
- $(objectsdir)/$(PIXELTANGO_NAME)/fx
+ $(objectsdir)/$(PIXELTANGO_NAME)
$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(PIXELTANGO_NAME) \
--author "Ben Bogart" \
--license "GNU GPL" \
+ --version "0.3.4" \
--description "objects for creating visuals in a live performance setting"
install -d $(helpdir)/$(PIXELTANGO_NAME)
install -p $(abstractions_src)/pixelTANGO/help/*.* \
@@ -230,18 +230,15 @@ rradical_install:
$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(RRADICAL_NAME) \
--author "Frank Barknecht" \
--license "GNU GPL"
- install -d $(objectsdir)/$(RRADICAL_NAME)/control
+ install -d $(objectsdir)/$(RRADICAL_NAME)
install -p $(shell ls -1 $(abstractions_src)/rradical/control/*.* | \
- grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)/control
- install -d $(objectsdir)/$(RRADICAL_NAME)/effects
+ grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)
install -p $(shell ls -1 $(abstractions_src)/rradical/effects/*.* | \
- grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)/effects
- install -d $(objectsdir)/$(RRADICAL_NAME)/instruments
+ grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)
install -p $(shell ls -1 $(abstractions_src)/rradical/instruments/*.* | \
- grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)/instruments
- install -d $(objectsdir)/$(RRADICAL_NAME)/stuff
+ grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)
install -p $(shell ls -1 $(abstractions_src)/rradical/stuff/*.* | \
- grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)/stuff
+ grep -v '\-help.pd') $(objectsdir)/$(RRADICAL_NAME)
install -d $(examplesdir)/$(RRADICAL_NAME)
install -p $(abstractions_src)/rradical/usecases/*.* \
$(examplesdir)/$(RRADICAL_NAME)
diff --git a/abstractions/Makefile.buildlayout b/abstractions/Makefile.buildlayout
index 5bc5f28b..4e3a5d81 100755
--- a/abstractions/Makefile.buildlayout
+++ b/abstractions/Makefile.buildlayout
@@ -150,7 +150,7 @@ PD_VERSION = $(PD_MAJOR_VERSION).$(PD_MINOR_VERSION).$(PD_BUGFIX_VERSION)
# release version for this distro
-PACKAGE_VERSION = extended-RC5
+PACKAGE_VERSION = extended-RC6
PACKAGE_NAME = Pd-$(PD_VERSION)-$(PACKAGE_VERSION)
diff --git a/abstractions/README b/abstractions/README
index 7e997cfc..1d1fed22 100644
--- a/abstractions/README
+++ b/abstractions/README
@@ -41,6 +41,11 @@ doc/pddp/pddp_style_guide.pd
How to add your library of patches
==================================
+
+For the most up-to-date version of these instructions, see:
+
+ http://puredata.org/docs/developer/build
+
The best way to start is to copy the complete section of an existing library,
like memento. Then do a case-preserving search-and-replace, replacing
"memento" with the name of your library. Editors such as emacs will make the
@@ -139,17 +144,5 @@ $(objectsdir):
The subdirectory name (e.g. mylibrary) should always be all lowercase.
-"objects" targets
- To add your objects to this build system, first make your own target and
- add it to the "objects" target. For example: for the RRADical objects,
- there is a target called "objects_rradical:" which does everything needed
- to install the RRADical objects. This includes installing help patches
- and any other documentation.
-
-
-"applications" targets:
- This target is meant for any patch that is intended to be opened up and
- used, played, ran, etc. The RRADical the-showcase.pd is a good example
-