1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
From 854f6cc7308c88fd6e087b518585021aae5764cd Mon Sep 17 00:00:00 2001
From: Stelios Tsampas <loathingkernel@gmail.com>
Date: Wed, 12 Jul 2023 17:53:47 +0300
Subject: [PATCH 3/7] AUR Remove kaldi, openfst, vosk-api modules because of
missing blas, lapack lib32 from Arch
---
Makefile.in | 96 +----------------------------------------------------
1 file changed, 1 insertion(+), 95 deletions(-)
diff --git a/Makefile.in b/Makefile.in
index afc2330f..544652c5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -415,99 +415,6 @@ $(OBJ)/.steamexe-post-build64:
cp $(SRC)/steam_helper/64/libsteam_api.so $(DST_LIBDIR64)/
touch $@
-##
-## openfst
-##
-
-OPENFST_SOURCE_ARGS = \
- --include src/include/fst/config.h.in \
- --exclude aclocal.m4 \
- --exclude ar-lib \
- --exclude autom4te.cache \
- --exclude compile \
- --exclude config.guess \
- --exclude config.h.in \
- --exclude config.sub \
- --exclude configure \
- --exclude depcomp \
- --exclude install-sh \
- --exclude ltmain.sh \
- --exclude m4/libtool.m4 \
- --exclude m4/ltoptions.m4 \
- --exclude m4/ltsugar.m4 \
- --exclude m4/ltversion.m4 \
- --exclude m4/lt~obsolete.m4 \
- --exclude Makefile.in \
- --exclude missing \
- --exclude test-driver \
-
-OPENFST_CONFIGURE_ARGS = \
- --enable-silent-rules \
- --enable-static \
- --disable-shared \
- --enable-far \
- --enable-ngram-fsts \
- --enable-lookahead-fsts \
- --with-pic \
- --disable-bin \
-
-OPENFST_CFLAGS = -mno-bmi2
-OPENFST_CXXFLAGS = -mno-bmi2
-
-$(eval $(call rules-source,openfst,$(SRCDIR)/openfst))
-$(eval $(call rules-autoconf,openfst,32))
-$(eval $(call rules-autoconf,openfst,64))
-
-
-##
-## kaldi
-##
-
-KALDI_SOURCE_ARGS = \
- --exclude src/**/CMakeLists.txt \
-
-KALDI_CMAKE_ARGS = \
- -DKALDI_VERSION=5.5-proton \
- -DBLAS_LIBRARIES=-lblas \
- -DLAPACK_LIBRARIES=-llapack \
- -DCMAKE_POSITION_INDEPENDENT_CODE=ON \
- -DBUILD_SHARED_LIBS=OFF \
- -DKALDI_BUILD_TEST=OFF \
- -DKALDI_BUILD_EXE=OFF \
-
-KALDI_DEPENDS = openfst
-
-$(eval $(call rules-source,kaldi,$(SRCDIR)/kaldi))
-$(eval $(call rules-cmake,kaldi,32))
-$(eval $(call rules-cmake,kaldi,64))
-
-
-##
-## vosk
-##
-
-VOSK_CMAKE_ARGS = \
- -DBUILD_SHARED_LIBS=ON \
-
-VOSK_DEPENDS = openfst kaldi
-
-$(eval $(call rules-source,vosk,$(SRCDIR)/vosk-api))
-$(eval $(call rules-cmake,vosk,32))
-$(eval $(call rules-cmake,vosk,64))
-
-##
-## piper
-##
-
-$(eval $(call rules-source,piper,$(SRCDIR)/piper))
-$(eval $(call rules-cmake,piper,64))
-
-$(OBJ)/.piper-post-build64:
- mkdir -p $(PIPER_DST64)/lib64
- mkdir -p $(DST_DIR)/share
- mv $(PIPER_DST64)/*.so* $(PIPER_DST64)/lib64/
- cp -a $(PIPER_DST64)/{espeak-ng-data,libtashkeel_model.ort} $(DST_DIR)/share/
- touch $@
##
## wine
@@ -548,8 +455,7 @@ WINE_CONFIGURE_ARGS64 = --enable-win64 \
VKD3D_PE_CFLAGS="-I$(VULKAN_HEADERS_DST64)/include -I$(VKD3D_DST64)/include/vkd3d" \
VKD3D_PE_LIBS="-L$(VKD3D_DST64)/bin -l:libvkd3d-1.dll -l:libvkd3d-shader-1.dll"
-WINE_DEPENDS = gst_orc gstreamer gst_base vkd3d openfst kaldi vosk
-WINE_DEPENDS64 = piper
+WINE_DEPENDS = gst_orc gstreamer gst_base vkd3d
$(eval $(call rules-source,wine,$(SRCDIR)/wine))
$(eval $(call rules-autoconf,wine,32))
--
2.48.1
|