Package Details: hunspell-ko 0.7.94-1

Git Clone URL: https://aur.archlinux.org/hunspell-ko.git (read-only, click to copy)
Package Base: hunspell-ko
Description: Korean hunspell dictionary
Upstream URL: https://github.com/spellcheck-ko/hunspell-dict-ko
Keywords: hangul hunspell hunspell-ko ko korea korean
Licenses: custom, GPL3
Submitter: OctopusET
Maintainer: OctopusET
Last Packager: OctopusET
Votes: 2
Popularity: 0.000000
First Submitted: 2019-01-14 16:30 (UTC)
Last Updated: 2023-06-17 21:15 (UTC)

Dependencies (6)

Required by (0)

Sources (1)

Latest Comments

BrianCha commented on 2021-08-20 02:32 (UTC)

OctopusET, works fine. thanks!

OctopusET commented on 2021-08-19 12:58 (UTC)

@BrainCha I fixed symbolic, please check this out.

BrianCha commented on 2021-08-19 10:15 (UTC) (edited on 2021-08-19 10:18 (UTC) by BrianCha)

/usr/share/hunspell/ko_KR.* symlinks are broken after install this package.

package() {
    cd "$srcdir/hunspell-dict-ko-$pkgver" 
    # ...
    for file in ko.*; do
        # I think this line create broken symlinks
        ln -s ko_KR."${file#*.}"
    done
    popd
    # ...

Thanks

OctopusET commented on 2019-10-11 14:19 (UTC)

I'm really sorry for late update. I fixed it as 'swiftscythe' said. It will work well now. Thank you for helping.

Silejonu commented on 2019-09-28 20:04 (UTC)

Please update the PKGBUILD to include swiftscythe's comment. The package does not install right now unless you manually edit the PKGBUILD as swiftscythe has said.

swiftscythe commented on 2019-02-15 12:56 (UTC) (edited on 2019-02-15 12:56 (UTC) by swiftscythe)

Currently this package does not install anything, you need to change the package function to:

package() {
  cd "$srcdir/hunspell-dict-ko-$pkgver"
  install -dm755 "${pkgdir}"/usr/share/hunspell
  cp -p ko.aff "${pkgdir}"/usr/share/hunspell/ko_KR.aff
  cp -p ko.dic "${pkgdir}"/usr/share/hunspell/ko_KR.dic
}