diff --git a/ajatt/packages/dictionaries.scm b/ajatt/packages/dictionaries.scm index bd885a7..e7d6b1b 100644 --- a/ajatt/packages/dictionaries.scm +++ b/ajatt/packages/dictionaries.scm @@ -46,7 +46,9 @@ (base32 "10aghpghysc024jcd14hl6mslzags5jf9pbr8apndycczc4ybswy")))) (build-system cmake-build-system) (arguments - (list #:cmake cmake + (list + #:make-flags #~(list "-j" "7") + #:cmake cmake #:tests? #f #:configure-flags #~(list "-DCMAKE_BUILD_TYPE=Release") diff --git a/ajatt/packages/dictionaries.scm~ b/ajatt/packages/dictionaries.scm~ new file mode 100644 index 0000000..bd885a7 --- /dev/null +++ b/ajatt/packages/dictionaries.scm~ @@ -0,0 +1,169 @@ +(define-module (ajatt packages dictionaries) + #:use-module (gnu packages cmake) + #:use-module (gnu packages compression) + #:use-module (gnu packages dictionaries) + #:use-module (gnu packages education) + #:use-module (gnu packages fontutils) + #:use-module (gnu packages fonts) + #:use-module (gnu packages gstreamer) + #:use-module (gnu packages hunspell) + #:use-module (gnu packages icu4c) + #:use-module (gnu packages image) + #:use-module (gnu packages perl) + #:use-module (gnu packages pkg-config) + #:use-module ((gnu packages qt) #:hide (qtspeech)) + #:use-module (gnu packages search) + #:use-module (gnu packages textutils) + #:use-module (gnu packages version-control) + #:use-module (gnu packages video) + #:use-module (gnu packages vulkan) + #:use-module (gnu packages web) + #:use-module (gnu packages xdisorg) + #:use-module (gnu packages xiph) + #:use-module (gnu packages xorg) + #:use-module (guix build-system cmake) + #:use-module (guix build-system gnu) + #:use-module (guix gexp) + #:use-module (guix utils) + #:use-module (guix git-download) + #:use-module (guix packages) + #:use-module (ajatt packages qt) + #:use-module (ajatt packages suckless) + #:use-module ((guix licenses) #:prefix license:)) + +(define-public goldendict-ng + (package + (name "goldendict-ng") + (version "24.02.16") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/xiaoyifang/goldendict-ng.git") + (commit "68c95001005fd77c95936589bbc2487ff3086019"))) + (sha256 + (base32 "10aghpghysc024jcd14hl6mslzags5jf9pbr8apndycczc4ybswy")))) + (build-system cmake-build-system) + (arguments + (list #:cmake cmake + #:tests? #f + #:configure-flags + #~(list "-DCMAKE_BUILD_TYPE=Release") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'absolutize-qt-headers + (lambda _ + (let ((qtbase-file + (lambda (path) + (string-append "\"" #$qtbase path "\"")))) + (substitute* "src/ui/mainwindow.cc" + (("") + (qtbase-file + "/include/qt6/QtPrintSupport/QPrinter")) + (("") + (qtbase-file + "/include/qt6/QtPrintSupport/QPageSetupDialog")) + (("") + (qtbase-file + "/include/qt6/QtPrintSupport/QPrintPreviewDialog")) + (("") + (qtbase-file + "/include/qt6/QtPrintSupport/QPrintDialog")))))) + (add-after 'wrap 'wrap-qt-process-path + (lambda* (#:key inputs outputs #:allow-other-keys) + (wrap-program (search-input-file outputs "bin/goldendict") + `("QTWEBENGINE_RESOURCES_PATH" = + (,(search-input-directory + inputs "/share/qt6/resources"))) + `("QTWEBENGINEPROCESS_PATH" = + (,(search-input-file + inputs "/lib/qt6/libexec/QtWebEngineProcess"))))))))) + (native-inputs + (list hunspell + icu4c + libeb + libtiff + libvorbis + libxkbcommon + libxkbfile + libxtst + libzim + lzo + opencc + pkg-config + qt5compat + gstreamer + qtspeech + qtsvg + qttools + qtwebview + qtx11extras + vulkan-headers + (list xz "static") + zlib + (list zstd "lib"))) + (inputs + (list ao + bzip2 + ffmpeg + xapian + qtmultimedia + qtwebengine + gstreamer + qtbase + xproto)) + (synopsis "A feature-rich dictionary lookup program") + (description + "GoldenDict is a feature-rich dictionary lookup program, +supporting multiple dictionary formats (StarDict, Babylon, Lingvo, Dictd, AARD, +MDict, SDict) and online dictionaries, featuring perfect article rendering with +the complete markup, illustrations and other content retained, and allowing you +to type in words without any accents or correct case.") + (home-page "https://xiaoyifang.github.io/goldendict-ng/") + (license + (list license:gpl3+ + license:zlib)))) + +(define-public suckless-dictpopup + (package + (name "suckless-dictpopup") + (version "2.5_stable") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/KonstantinDjairo/suckless_dictpopup.git") + (commit "5309e184d0a68bad266ca0f4bef7c3d73ccc5eef"))) + (sha256 + (base32 "1pnx25s101ydldcvsrh79imkpirw5j5n9qzp9pzi37fz1g1xbb1k")))) + (build-system gnu-build-system) + (inputs + (list freetype + libxft + libx11 + font-google-noto-sans-cjk + libxinerama + perl + sdcv + sselp)) + (arguments + (list #:tests? #f + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output) + (string-append "CPPFLAGS=-I" + (assoc-ref %build-inputs "freetype") + "/include/freetype2")) + #:phases + #~(modify-phases %standard-phases + (replace 'configure + (lambda _ (copy-file "config.def.h" "config.h")))))) + (synopsis "A very lightweight popup dictionary written in C.") + (description "suckless_dictpopup is a very lightweight program to show popups +with the dictionary entries of the selected text. It uses Xlib for displaying +the popup and sdcv for the dictionary lookup.") + (home-page "https://github.com/KonstantinDjairo/suckless_dictpopup") + (license license:bsd-0))) +