861ac185a6
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
21 lines
642 B
Diff
21 lines
642 B
Diff
--- a/Makefile.in 2011-02-07 17:37:51.000000000 +0100
|
|
+++ b/Makefile.in 2020-09-06 17:34:21.695515951 +0200
|
|
@@ -37,12 +37,12 @@
|
|
$(RANLIB) $@
|
|
|
|
install: all
|
|
- $(INSTALL) -d $(bindir)
|
|
- $(INSTALL) -m 755 lzf $(bindir)
|
|
- $(INSTALL) -d $(includedir)
|
|
- $(INSTALL_DATA) lzf.h $(includedir)
|
|
- $(INSTALL) -d $(libdir)
|
|
- $(INSTALL_DATA) liblzf.a $(libdir)
|
|
+ $(INSTALL) -d $(DESTDIR)/$(bindir)
|
|
+ $(INSTALL) -m 755 lzf $(DESTDIR)/$(bindir)
|
|
+ $(INSTALL) -d $(DESTDIR)/$(includedir)
|
|
+ $(INSTALL_DATA) lzf.h $(DESTDIR)/$(includedir)
|
|
+ $(INSTALL) -d $(DESTDIR)/$(libdir)
|
|
+ $(INSTALL_DATA) liblzf.a $(DESTDIR)/$(libdir)
|
|
|
|
dist:
|
|
mkdir liblzf-$(VERSION)
|