File tree Expand file tree Collapse file tree 4 files changed +21
-14
lines changed Expand file tree Collapse file tree 4 files changed +21
-14
lines changed Original file line number Diff line number Diff line change 343
343
],
344
344
"cpp-library" : true
345
345
},
346
+ "libedit" : {
347
+ "source" : " libedit" ,
348
+ "static-libs-unix" : [
349
+ " libedit.a"
350
+ ],
351
+ "lib-depends" : [
352
+ " ncurses"
353
+ ]
354
+ },
346
355
"libevent" : {
347
356
"source" : " libevent" ,
348
357
"static-libs-unix" : [
Original file line number Diff line number Diff line change 489
489
"path" : " COPYING"
490
490
}
491
491
},
492
+ "libedit" : {
493
+ "type" : " filelist" ,
494
+ "url" : " https://thrysoee.dk/editline/" ,
495
+ "regex" : " /href=\" (?<file>libedit-(?<version>[^\" ]+)\\ .tar\\ .gz)\" /" ,
496
+ "provide-pre-built" : true ,
497
+ "license" : {
498
+ "type" : " file" ,
499
+ "path" : " COPYING"
500
+ }
501
+ },
492
502
"libevent" : {
493
503
"type" : " ghrel" ,
494
504
"repo" : " libevent/libevent" ,
946
956
"path" : " LICENSE"
947
957
}
948
958
},
949
- "libedit" : {
950
- "type" : " filelist" ,
951
- "url" : " https://thrysoee.dk/editline/" ,
952
- "regex" : " /href=\" (?<file>editline-(?<version>[^\" ]+)\\ .tar\\ .gz)\" /" ,
953
- "provide-pre-built" : true ,
954
- "license" : {
955
- "type" : " file" ,
956
- "path" : " COPYING"
957
- }
958
- },
959
959
"readline" : {
960
960
"type" : " filelist" ,
961
961
"url" : " https://ftp.gnu.org/pub/gnu/readline/" ,
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public function patchBeforeConfigure(): bool
23
23
24
24
public function getUnixConfigureArg (bool $ shared = false ): string
25
25
{
26
- return '--with-libedit= ' . BUILD_ROOT_PATH . ' --without-readline ' ;
26
+ return '--with-libedit --without-readline ' ;
27
27
}
28
28
29
29
public function buildUnixShared (): void
Original file line number Diff line number Diff line change @@ -11,9 +11,7 @@ trait libedit
11
11
protected function build (): void
12
12
{
13
13
UnixAutoconfExecutor::create ($ this )
14
- ->configure (
15
- '--with-curses '
16
- )
14
+ ->configure ()
17
15
->make ();
18
16
$ this ->patchPkgconfPrefix (['libedit.pc ' ]);
19
17
}
You can’t perform that action at this time.
0 commit comments