From a6cf3f31f69cf2b7b3b797751b958c0d5d3c9c54 Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 14 Mar 2020 17:28:36 +0100 Subject: [PATCH] jsonnet: preserve soname symlinks. --- srcpkgs/jsonnet/patches/Makefile.patch | 17 +++++++++++++++++ srcpkgs/jsonnet/template | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/jsonnet/patches/Makefile.patch diff --git a/srcpkgs/jsonnet/patches/Makefile.patch b/srcpkgs/jsonnet/patches/Makefile.patch new file mode 100644 index 00000000000..c645c99d986 --- /dev/null +++ b/srcpkgs/jsonnet/patches/Makefile.patch @@ -0,0 +1,17 @@ +--- Makefile 2020-02-09 23:22:27.000000000 +0100 ++++ Makefile 2020-02-14 14:14:31.131124997 +0100 +@@ -127,11 +127,11 @@ + + install: bins libs + mkdir -p $(DESTDIR)$(PREFIX)/bin +- cp $(BINS) $(DESTDIR)$(PREFIX)/bin/ ++ cp -P $(BINS) $(DESTDIR)$(PREFIX)/bin/ + mkdir -p $(DESTDIR)$(PREFIX)/lib +- cp $(LIBS) $(DESTDIR)$(PREFIX)/lib/ ++ cp -P $(LIBS) $(DESTDIR)$(PREFIX)/lib/ + mkdir -p $(DESTDIR)$(PREFIX)/include +- cp $(INCS) $(DESTDIR)$(PREFIX)/include/ ++ cp -P $(INCS) $(DESTDIR)$(PREFIX)/include/ + + all: $(ALL) + diff --git a/srcpkgs/jsonnet/template b/srcpkgs/jsonnet/template index c79fa008fc5..9b0091146a3 100644 --- a/srcpkgs/jsonnet/template +++ b/srcpkgs/jsonnet/template @@ -1,7 +1,7 @@ # Template file for 'jsonnet' pkgname=jsonnet version=0.15.0 -revision=2 +revision=3 build_style=gnu-makefile short_desc="Data templating language" maintainer="Leah Neukirchen "