123456789101112131415161718192021222324252627 |
- diff -Nur a/template b/template
- --- a/template 2020-09-24 21:34:00.151961000 +0600
- +++ b/template 2020-09-30 11:26:22.349258000 +0600
- @@ -12,7 +12,7 @@
- libwmf-devel libchamplain-devel redland-devel libical-devel
- libgcrypt-devel harfbuzz-devel $(vopt_if goffice goffice-devel)
- $(vopt_if gtk3 'gtk+3-devel' 'gtk+-devel')"
- -depends="hicolor-icon-theme desktop-file-utils"
- +depends="hicolor-icon-theme desktop-file-utils liberation-fonts-ttf"
- short_desc="Free word processing program similar to Microsoft(R) Word"
- maintainer="Orphaned <orphan@voidlinux.org>"
- license="GPL-2.0-or-later"
- @@ -24,6 +24,13 @@
-
- CXXFLAGS="-std=c++11"
-
- +pre_configure() {
- + # To remove Google search plugin.
- + # We have a "remove-google.patch" patch file to remove Google from the build.
- + # This is just to be extra sure.
- + rm -rf plugins/google
- +}
- +
- libabiword_package() {
- short_desc+=" - Runtime library"
- pkg_install() {
|