Sha256: f163130fde1f7ec3f8e49753b6175df02bd4bf6ece22f4ac2b5a77a010d1b67d
Contents?: true
Size: 632 Bytes
Versions: 2
Compression:
Stored size: 632 Bytes
Contents
From 8868eb72ea64fef8193b71c9372373e4aebdd4fd Mon Sep 17 00:00:00 2001 From: Petko Bordjukov <bordjukov@gmail.com> Date: Sun, 22 Nov 2015 18:45:07 +0200 Subject: [PATCH 1/3] Add an install task --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index c57c267..0391a49 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,8 @@ #ZINC = ../../zlib #ZLIB = ../../zlib +DESTDIR=. + CC = gcc LD = gcc RM = rm -f @@ -91,3 +93,7 @@ $(PNGCRUSH)$(E): $(OBJS) clean: $(RM) $(EXES) $(OBJS) + +install: $(PNGCRUSH)$(E) + mkdir -p ${DESTDIR}/bin/ + cp $(PNGCRUSH)$(E) ${DESTDIR}/bin/ -- 2.8.3
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
image_compressor_pack-0.1.1 | ports/patches/pngcrush/0001-Add-an-install-task.patch |
image_compressor_pack-0.1.1.rc2 | ports/patches/pngcrush/0001-Add-an-install-task.patch |