Package Details: dict-ecdict-git 1.0.0.r17.337f198-1

Git Clone URL: https://aur.archlinux.org/dict-ecdict-git.git (read-only, click to copy)
Package Base: dict-ecdict-git
Description: A port of Ultimate ECDICT database for dictd et al.
Upstream URL: https://github.com/skywind3000/ECDICT-ultimate
Licenses: MIT
Conflicts: dict-ecdict
Provides: dict-ecdict
Submitter: orzun
Maintainer: orzun
Last Packager: orzun
Votes: 0
Popularity: 0.000000
First Submitted: 2020-11-18 06:27 (UTC)
Last Updated: 2024-01-31 22:07 (UTC)

Dependencies (6)

Required by (0)

Sources (2)

Latest Comments

orzun commented on 2021-10-29 14:30 (UTC)

@simsilver Thanks, just updated https://aur.archlinux.org/cgit/aur.git/commit/?h=dict-ecdict-git&id=bbbfb7f885dee5133615de9e5a592834d5994c43

simsilver commented on 2021-10-29 05:41 (UTC) (edited on 2021-10-29 06:05 (UTC) by simsilver)

the zip file will download agagin when build() on my machine, and add zip's link made an extra decompression; so I add a touch action

diff --git a/PKGBUILD b/PKGBUILD
index a3cd0f6..63eaae5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -30,6 +30,8 @@ pkgver()
 build()
 {
   cd ${_srcname}
+  ln -sf ${srcdir}/${_zipname} ${_zipname}
+  touch ${srcdir}/${_csvname}
   ln -sf ${srcdir}/${_csvname} ecdict.csv
   make
 }

And the Makefile from source should make the .index and .dict.dz as a grouped target https://github.com/tuberry/dict-ecdict/pull/2