File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ PortGroup makefile 1.0
7
7
8
8
github.setup mawww kakoune 2024.05.18 v
9
9
github.tarball_from archive
10
- revision 0
10
+ revision 1
11
11
12
12
homepage https://kakoune.org
13
13
@@ -44,6 +44,8 @@ checksums rmd160 9700c43f525a5b174368e0abe1f5ca2884456869 \
44
44
sha256 50f2920db8ab8f71556b73dfd6d53fb924f67d1c60b9882050cfecfaa3aed31f \
45
45
size 720073
46
46
47
+ patchfiles-append patch-fix-prefix.diff
48
+
47
49
# error: 'uncaught_exceptions' is unavailable: introduced in macOS 10.12
48
50
if {${os.platform} eq " darwin" && ${os.major} < 16} {
49
51
post-patch {
Original file line number Diff line number Diff line change
1
+ --- Makefile 2024-05-18 12:43:06.000000000 +0800
2
+ +++ Makefile 2024-12-18 20:48:21.000000000 +0800
3
+ @@ -33,7 +33,7 @@
4
+ version = $(shell cat .version 2>/dev/null || git describe --tags HEAD 2>/dev/null | sed s/^v// || echo unknown)
5
+ version != cat .version 2>/dev/null || ( git describe --tags HEAD 2>/dev/null | sed s/^v// ) || echo unknown
6
+
7
+ - PREFIX = /usr/local
8
+ + PREFIX ?= /usr/local
9
+ DESTDIR = # root dir
10
+
11
+ bindir = $(DESTDIR)$(PREFIX)/bin
You can’t perform that action at this time.
0 commit comments