mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-28 16:32:57 +02:00
jsonnet: preserve soname symlinks.
This commit is contained in:
parent
d3c68a8006
commit
a6cf3f31f6
2 changed files with 18 additions and 1 deletions
17
srcpkgs/jsonnet/patches/Makefile.patch
Normal file
17
srcpkgs/jsonnet/patches/Makefile.patch
Normal 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)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'jsonnet'
|
# Template file for 'jsonnet'
|
||||||
pkgname=jsonnet
|
pkgname=jsonnet
|
||||||
version=0.15.0
|
version=0.15.0
|
||||||
revision=2
|
revision=3
|
||||||
build_style=gnu-makefile
|
build_style=gnu-makefile
|
||||||
short_desc="Data templating language"
|
short_desc="Data templating language"
|
||||||
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
||||||
|
|
Loading…
Add table
Reference in a new issue