What should be changed (,maybe in pd/src/Makefile.am ? ) to build a pd-ex binary with different name ?
now it is called 'pd' and it's name conflict when vannila wants to come...
What shoul be the name ?
thanks
fk.
Fero Kiraly wrote:
What should be changed (,maybe in pd/src/Makefile.am ? ) to build a pd-ex binary with different name ?
now it is called 'pd' and it's name conflict when vannila wants to come...
In configure there is : --program-transform-name=PROGRAM run sed PROGRAM on installed program names
maybe "pd-extended" ?
On 01/23/2013 05:35 AM, Charles Goyard wrote:
Fero Kiraly wrote:
What should be changed (,maybe in pd/src/Makefile.am ? ) to build a pd-ex binary with different name ?
now it is called 'pd' and it's name conflict when vannila wants to come...
In configure there is : --program-transform-name=PROGRAM run sed PROGRAM on installed program names
maybe "pd-extended" ?
I do it much simpler than that, I actually 'mv pd pd-extended' in the debian/rules file:
http://pure-data.svn.sourceforge.net/viewvc/pure-data/branches/pd-extended/0...
Then pd-extended is registered as an option for 'pd' via the Debian alternatives system in debian/postinst.
.hc
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2013-01-23 18:08, Hans-Christoph Steiner wrote:
On 01/23/2013 05:35 AM, Charles Goyard wrote:
Fero Kiraly wrote:
What should be changed (,maybe in pd/src/Makefile.am ? ) to build a pd-ex binary with different name ?
now it is called 'pd' and it's name conflict when vannila wants to come...
In configure there is : --program-transform-name=PROGRAM run sed PROGRAM on installed program names
maybe "pd-extended" ?
I do it much simpler than that, I actually 'mv pd pd-extended' in the debian/rules file:
i think that using program-transform-name would also transform the library paths (e.g. installation to /usr/lib/pd-extended).
that's what is used in the debian packaging of "puredata":
dh_auto_configure -- --program-transform-name='s/pd$$/puredata/'
vamsf IOhannes