The problem is that etcdir should be ${DESTDIR}${prefix}/etc unless ${prefix} is not given. See e.g. the autoconf manual for more on this (and all the other paths). I'm not suggesting you use autoconf, mind (though that's what I'd do: the autotools are actually very handy for small projects like this one, precisely because they take care *and hide* of all the tedious details that otherwise outweigh the complexity of the entire build system!). Tested with current master HEAD.
Hi Reuben, Ugh at the thought of using autotools here! :-) It's possibly the first time I've looked at the Makefile in years. prefix is clearly broken! If using DESTDIR=/usr/local (for example), the last thing we should be doing is adding /usr/local/usr
Hmmm.... I am a little new to makefiles but so far I have this: -------------------- INSTALL = /usr/bin/install -c # Installation directories prefix = $(DESTDIR)/usr/local exec_prefix = ${prefix} datarootdir = $(prefix)/share mandir = $(datarootdir)/man man1dir = $(mandir)/man1 bindir = ${exec_prefix}/bin sysconfdir = $(prefix)/etc docdir = $(datarootdir)/doc/abcde-2.7.1 all: clean: install: $(INSTALL) -d -m 755 $(bindir) $(INSTALL) -m 755 abcde cddb-tool abcde-musicbrainz-tool $(bindir) $(INSTALL) -d -m 755 $(datarootdir) $(INSTALL) -d -m 755 $(man1dir) $(INSTALL) -m 644 abcde.1 cddb-tool.1 $(man1dir) $(INSTALL) -d -m 755 $(sysconfdir) $(INSTALL) -m 644 abcde.conf $(sysconfdir) $(INSTALL) -d -m 755 $(docdir) $(INSTALL) -m 644 changelog COPYING FAQ README $(docdir) -------------------- which works well enough here. It needs an uninstall target which I will add. It is a little neater and more syntactically correct as per this doc: https://www.gnu.org/prep/standards/html_node/Directory-Variables.html but is not a final effort.
And certainly on my system the -c option: INSTALL = /usr/bin/install -c is ignored so I have removed it...
And with uninstall: ----- INSTALL = /usr/bin/install # Installation directories prefix = $(DESTDIR)/usr/local exec_prefix = $(prefix) datarootdir = $(prefix)/share mandir = $(datarootdir)/man man1dir = $(mandir)/man1 bindir = $(exec_prefix)/bin sysconfdir = $(prefix)/etc docdir = $(datarootdir)/doc/abcde-2.7.1 all: clean: install: $(INSTALL) -d -m 755 $(bindir) $(INSTALL) -m 755 abcde cddb-tool abcde-musicbrainz-tool $(bindir) $(INSTALL) -d -m 755 $(datarootdir) $(INSTALL) -d -m 755 $(man1dir) $(INSTALL) -m 644 abcde.1 cddb-tool.1 $(man1dir) $(INSTALL) -d -m 755 $(sysconfdir) $(INSTALL) -m 644 abcde.conf $(sysconfdir) $(INSTALL) -d -m 755 $(docdir) $(INSTALL) -m 644 changelog COPYING FAQ README $(docdir) uninstall: -rm -v $(bindir)/{abcde,cddb-tool,abcde-musicbrainz-tool} -rm -v $(man1dir)/{abcde.1,cddb-tool.1} -rm -v $(sysconfdir)/abcde.conf -rm -v $(docdir)/{changelog,COPYING,FAQ,README} ------------------ I think it is good etiquette to leave directoris in place so this does not remove the docs directory itself but this could easily be altered I guess...
And I have done so: ------------------ INSTALL = /usr/bin/install # Installation directories prefix = $(DESTDIR)/usr/local exec_prefix = $(prefix) datarootdir = $(prefix)/share mandir = $(datarootdir)/man man1dir = $(mandir)/man1 bindir = $(exec_prefix)/bin sysconfdir = $(prefix)/etc docdir = $(datarootdir)/doc/abcde-2.7.1 all: clean: install: $(INSTALL) -d -m 755 $(bindir) $(INSTALL) -m 755 abcde cddb-tool abcde-musicbrainz-tool $(bindir) $(INSTALL) -d -m 755 $(datarootdir) $(INSTALL) -d -m 755 $(man1dir) $(INSTALL) -m 644 abcde.1 cddb-tool.1 $(man1dir) $(INSTALL) -d -m 755 $(sysconfdir) $(INSTALL) -m 644 abcde.conf $(sysconfdir) $(INSTALL) -d -m 755 $(docdir) $(INSTALL) -m 644 changelog COPYING FAQ README $(docdir) uninstall: -rm -v $(bindir)/{abcde,cddb-tool,abcde-musicbrainz-tool} -rm -v $(man1dir)/{abcde.1,cddb-tool.1} -rm -v $(sysconfdir)/abcde.conf -rm -rfv $(docdir) ------------------- Now out to dinner, let me know if you are both happy with this version...
This mostly looks good, only $(DESTDIR) should be prefixed to all the paths in install commands rather than part of the definition of prefix, so that prefix and DESTDIR can both be defined by the user and still work. See the autoconf manual for examples.
Makes sense, although feel free to give a suggested patch for this sort of issue :). My Slackware colleagues have suggested the following with a small additions by myself, please test out and if all is well (and I think it looks pretty decent) I will commit this weekend: -------------------------- abcde_version = abcde-2.7.1 INSTALL = /usr/bin/install prefix = /usr/local exec_prefix = $(prefix) bindir = $(exec_prefix)/bin sysconfdir = $(prefix)/etc datarootdir = $(prefix)/share docdir = $(datarootdir)/doc/$(abcde_version) mandir = $(datarootdir)/man DESTDIR = all: clean: install: $(INSTALL) -d -m 755 $(DESTDIR)$(bindir) $(INSTALL) -m 755 abcde cddb-tool abcde-musicbrainz-tool $(DESTDIR)$(bindir) $(INSTALL) -d -m 755 $(DESTDIR)$(sysconfdir) $(INSTALL) -m 644 abcde.conf $(DESTDIR)$(sysconfdir) $(INSTALL) -d -m 755 $(DESTDIR)$(docdir) $(INSTALL) -m 644 changelog COPYING FAQ README $(DESTDIR)$(docdir) $(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1 $(INSTALL) -m 644 abcde.1 cddb-tool.1 $(DESTDIR)$(mandir)/man1 uninstall: -rm -v $(DESTDIR)$(bindir)/{abcde,cddb-tool,abcde-musicbrainz-tool} -rm -v $(DESTDIR)$(sysconfdir)/abcde.conf -rm -v $(DESTDIR)$(docdir)/{changelog,COPYING,FAQ,README} -rm -v $(DESTDIR)$(mandir)/man1/{abcde.1,cddb-tool.1} ----------------------------- (Some did not like the addition of the version information but I have retained this and left it at the top of the makefile for easy editing.) I will add full credit to my fellow Slackers in the changelog. And then I will return to ripping my cds to alac with abcde + qaac: I sometimes almost forget that I am doing all of this so that I can enjoy music :).
This looks good, thanks!
Minus the bash-specific brace expansion: --------------- abcde_version = abcde-2.7.1 INSTALL = /usr/bin/install prefix = /usr/local exec_prefix = $(prefix) bindir = $(exec_prefix)/bin sysconfdir = $(prefix)/etc datarootdir = $(prefix)/share docdir = $(datarootdir)/doc/$(abcde_version) mandir = $(datarootdir)/man DESTDIR = all: clean: install: $(INSTALL) -d -m 755 $(DESTDIR)$(bindir) $(INSTALL) -m 755 abcde cddb-tool abcde-musicbrainz-tool $(DESTDIR)$(bindir) $(INSTALL) -d -m 755 $(DESTDIR)$(sysconfdir) $(INSTALL) -m 644 abcde.conf $(DESTDIR)$(sysconfdir) $(INSTALL) -d -m 755 $(DESTDIR)$(docdir) $(INSTALL) -m 644 changelog COPYING FAQ README $(DESTDIR)$(docdir) $(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1 $(INSTALL) -m 644 abcde.1 cddb-tool.1 $(DESTDIR)$(mandir)/man1 uninstall: -rm -v $(DESTDIR)$(bindir)/abcde \ $(DESTDIR)$(bindir)/cddb-tool \ $(DESTDIR)$(bindir)/abcde-musicbrainz-tool -rm -v $(DESTDIR)$(sysconfdir)/abcde.conf -rm -v $(DESTDIR)$(docdir)/changelog \ $(DESTDIR)$(docdir)/COPYING \ $(DESTDIR)$(docdir)/FAQ \ $(DESTDIR)$(docdir)/README -rm -v $(DESTDIR)$(mandir)/man1/abcde.1 \ $(DESTDIR)$(mandir)/man1/cddb-tool.1 --------------------- which is a pity as the brace expansion is cool....
Neater: abcde_version = abcde-2.7.1 INSTALL = /usr/bin/install prefix = /usr/local exec_prefix = $(prefix) bindir = $(exec_prefix)/bin sysconfdir = $(prefix)/etc datarootdir = $(prefix)/share docdir = $(datarootdir)/doc/$(abcde_version) mandir = $(datarootdir)/man DESTDIR = all: clean: install: $(INSTALL) -d -m 755 $(DESTDIR)$(bindir) $(INSTALL) -m 755 abcde cddb-tool abcde-musicbrainz-tool $(DESTDIR)$(bindir) $(INSTALL) -d -m 755 $(DESTDIR)$(sysconfdir) $(INSTALL) -m 644 abcde.conf $(DESTDIR)$(sysconfdir) $(INSTALL) -d -m 755 $(DESTDIR)$(docdir) $(INSTALL) -m 644 changelog COPYING FAQ README $(DESTDIR)$(docdir) $(INSTALL) -d -m 755 $(DESTDIR)$(mandir)/man1 $(INSTALL) -m 644 abcde.1 cddb-tool.1 $(DESTDIR)$(mandir)/man1 uninstall: -rm -v \ $(DESTDIR)$(bindir)/abcde \ $(DESTDIR)$(bindir)/cddb-tool \ $(DESTDIR)$(bindir)/abcde-musicbrainz-tool \ $(DESTDIR)$(sysconfdir)/abcde.conf \ $(DESTDIR)$(docdir)/changelog \ $(DESTDIR)$(docdir)/COPYING \ $(DESTDIR)$(docdir)/FAQ \ $(DESTDIR)$(docdir)/README \ $(DESTDIR)$(mandir)/man1/abcde.1 \ $(DESTDIR)$(mandir)/man1/cddb-tool.1
I believe the "-c" flag should still be passed to install for old systems. Certainly, automake still outputs this flag, even though it's ignored on GNU and modern BSD systems.
I guess since abcde still supports l3enc there can be no argument with older versions of install :). I have committed the changes, thanks for highlighting this issue and being part of the change...