bump gomuks
This commit is contained in:
parent
1986e2a627
commit
1af957d4a1
3 changed files with 7 additions and 3 deletions
2
gomuks
2
gomuks
|
|
@ -1 +1 @@
|
||||||
Subproject commit da3b823e1435afd6f2a1ea6c354d9a35c489b624
|
Subproject commit 819f5d69f068ddedb08fe732f50570e33dd19e0f
|
||||||
|
|
@ -55,7 +55,11 @@ Future<void> main(List<String> args) => build(args, (input, output) async {
|
||||||
libFile = buildDir.resolve("${targetArch.name}/$libFileName");
|
libFile = buildDir.resolve("${targetArch.name}/$libFileName");
|
||||||
|
|
||||||
// goheif/dav1d supported on Android would need to fix upstream
|
// goheif/dav1d supported on Android would need to fix upstream
|
||||||
final tags = targetOS == OS.android ? "goolm,noheic" : "goolm";
|
final tags = [
|
||||||
|
"sqlite_fts5",
|
||||||
|
"goolm",
|
||||||
|
if (targetOS == OS.android) "noheic",
|
||||||
|
].join(",");
|
||||||
print(
|
print(
|
||||||
"Building Gomuks shared library $libFileName (${targetOS.name}/${targetArch.name}) to ${libFile.path}...",
|
"Building Gomuks shared library $libFileName (${targetOS.name}/${targetArch.name}) to ${libFile.path}...",
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ buildGoModule (finalAttrs: {
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
runHook preBuild
|
runHook preBuild
|
||||||
|
|
||||||
go build -buildmode=c-shared -o libgomuks.so -tags goolm,noheic ./pkg/ffi
|
go build -buildmode=c-shared -o libgomuks.so -tags goolm,noheic,sqlite_fts5 ./pkg/ffi
|
||||||
|
|
||||||
runHook postBuild
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue