diff options
| author | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-17 07:54:18 +0000 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-03-17 09:47:05 +0000 |
| commit | 0bc0559d6eca1981236fdab61dfed72fca61ac85 (patch) | |
| tree | e6bfb45353de3f7c1d16558eebb48bba52003b27 /testing/txt2man/makefile.patch | |
| parent | d4898409df0b9ba0dd9de2a2a019c01d95d55268 (diff) | |
| download | aports-0bc0559d6eca1981236fdab61dfed72fca61ac85.tar.bz2 aports-0bc0559d6eca1981236fdab61dfed72fca61ac85.tar.xz | |
testing/txt2man: new aport
Convert flat ASCII text to man page format
http://mvertes.free.fr/txt2man/
Diffstat (limited to 'testing/txt2man/makefile.patch')
| -rw-r--r-- | testing/txt2man/makefile.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/txt2man/makefile.patch b/testing/txt2man/makefile.patch new file mode 100644 index 0000000000..617d4b0d2d --- /dev/null +++ b/testing/txt2man/makefile.patch @@ -0,0 +1,23 @@ +--- ./Makefile.orig ++++ ./Makefile +@@ -1,5 +1,7 @@ + # Makefile + prefix ?= /usr/local ++bindir ?= $(prefix)/bin ++mandir ?= $(prefix)/share/man + version = txt2man-1.5.6 + BIN = src2man bookman txt2man + MAN1 = src2man.1 txt2man.1 bookman.1 +@@ -7,9 +9,9 @@ + all: $(MAN1) + + install: $(MAN1) +- mkdir -p $(prefix)/bin $(prefix)/man/man1 +- cp $(BIN) $(prefix)/bin/ +- cp $(MAN1) $(prefix)/man/man1 ++ mkdir -p $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1 ++ cp $(BIN) $(DESTDIR)$(bindir) ++ cp $(MAN1) $(DESTDIR)$(mandir)/man1 + + clean: + rm -f *.1 *.txt *.ps *.pdf *.html |
