kiss-repository

personal kiss repository
git clone git://git.ckyln.com/~cem/kiss-repository.git
Log | Files | Refs | Submodules | README | LICENSE

commit 719fc5dcebe9128dc610b773096d400e1922cfe8
parent 66bf40fa42aa1e2047d0c3088c03c645475b1ab1
Author: Cem Keylan <cem@ckyln.com>
Date:   Sun,  5 Apr 2020 00:52:12 +0300

grabc: add new package at 1.0.2 to cem

Diffstat:
Acem/grabc/build | 5+++++
Acem/grabc/checksums | 2++
Acem/grabc/patches/better-makefile.patch | 43+++++++++++++++++++++++++++++++++++++++++++
Acem/grabc/sources | 2++
Acem/grabc/version | 1+
5 files changed, 53 insertions(+), 0 deletions(-)

diff --git a/cem/grabc/build b/cem/grabc/build @@ -0,0 +1,5 @@ +#!/bin/sh -e + +patch -p1 < better-makefile.patch +make +make DESTDIR="$1" PREFIX=/usr install diff --git a/cem/grabc/checksums b/cem/grabc/checksums @@ -0,0 +1,2 @@ +a3e4d2e5b11ef63e8928a630418fc8dfe1327585adc48aef8d0f13b2d78d5ea0 v1.0.2.tar.gz +b93f02919c3d89c1a21d68deffe8b14db97581206902fe2e0c0ff1c556a25ce9 better-makefile.patch diff --git a/cem/grabc/patches/better-makefile.patch 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 diff --git a/cem/grabc/sources b/cem/grabc/sources @@ -0,0 +1,2 @@ +https://github.com/muquit/grabc/archive/v1.0.2.tar.gz +patches/better-makefile.patch diff --git a/cem/grabc/version b/cem/grabc/version @@ -0,0 +1 @@ +1.0.2 1