diff options
author | Cem Keylan <cem@ckyln.com> | 2020-04-05 00:52:12 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-04-05 00:52:12 +0300 |
commit | 719fc5dcebe9128dc610b773096d400e1922cfe8 (patch) | |
tree | f394492211b7c7dc520b6236c48cf9296af50c46 /cem/grabc/patches | |
parent | 66bf40fa42aa1e2047d0c3088c03c645475b1ab1 (diff) | |
download | repository-719fc5dcebe9128dc610b773096d400e1922cfe8.tar.gz |
grabc: add new package at 1.0.2 to cem
Diffstat (limited to 'cem/grabc/patches')
-rw-r--r-- | cem/grabc/patches/better-makefile.patch | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/cem/grabc/patches/better-makefile.patch b/cem/grabc/patches/better-makefile.patch new file mode 100644 index 0000000..5fe735d --- /dev/null +++ b/cem/grabc/patches/better-makefile.patch @@ -0,0 +1,43 @@ +diff --git a/Makefile b/Makefile +index 5de8e52..9c17c2d 100644 +--- a/Makefile ++++ b/Makefile +@@ -12,8 +12,9 @@ cp=/bin/cp -fv + DESTDIR = + binary=./grabc + manpage=./grabc.1 +-bindir=/usr/local/bin +-mandir=/usr/local/share/man/man1 ++PREFIX = /usr/local ++bindir=${PREFIX}/bin ++mandir=${PREFIX}/share/man/man1 + + # replace -O with -g in order to debug + +@@ -33,20 +34,16 @@ all: $(PROGNAME) + $(PROGNAME) : $(OBJS) + $(CC) $(CFLAGS) -o $(PROGNAME) $(OBJS) $(LIBS) + +-doc: ++grabc.1: + pod2man grabc.pod > grabc.1 + +-install: installdirs install-bin install-man ++install: install-bin install-man + +-install-bin: +- ${cp} ${binary} ${DESTDIR}${bindir} ++install-bin: grabc ++ install -Dm755 -t ${DESTDIR}${bindir} ${binary} + +-installdirs: +- $(SHELL) ./mkinstalldirs ${DESTDIR}${bindir} +- $(SHELL) ./mkinstalldirs ${DESTDIR}${mandir} +- +-install-man: +- ${cp} ${manpage} ${DESTDIR}${mandir} ++install-man: grabc.1 ++ install -Dm644 -t ${DESTDIR}${mandir} ${manpage} + + deb: + /bin/rm -f *.deb |