diff options
Diffstat (limited to 'abstractions')
-rw-r--r-- | abstractions/Makefile | 17 | ||||
-rwxr-xr-x | abstractions/Makefile.buildlayout | 2 | ||||
-rw-r--r-- | abstractions/README | 17 |
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 - |