jsonnet: preserve soname symlinks.

This commit is contained in:
Leah Neukirchen 2020-03-14 17:28:36 +01:00
parent d3c68a8006
commit a6cf3f31f6
2 changed files with 18 additions and 1 deletions

View file

@ -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)

View file

@ -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 <leah@vuxu.org>"