summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 07b5efdb51ac2e97886d42e3e318be8cfc0f7c03 (plain)
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
# Maintainer: envolution
# Contributor: Einhard Leichtfuß <alguien@respiranto.de>
# shellcheck shell=bash disable=SC2034,SC2154

pkgname=freedict-tools
epoch=1
pkgver=0.7.0
_pkgver=${pkgver/_/-}
pkgrel=1
pkgdesc="Tools to compile the FreeDict dictionaries"
arch=('any')
url="https://freedict.org/"
license=('GPL' 'GPL3' 'CC-BY-SA' 'AGPL3')
depends=('make' 'libxslt' 'tar' 'gzip' 'dictd' 'perl' 'espeak-ng'
  'python>3.4' 'perl-xml-libxml' 'perl-xml-libxslt' 'iso-codes'
  'which'
  # ding2tei:
  'haskell-base' 'haskell-containers' 'haskell-transformers'
  'haskell-pretty' 'haskell-xml' 'haskell-safe'
  'bash' 'sed' 'make' 'coreutils')
makedepends=('ghc' 'alex' 'happy') # ding2tei
source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/freedict/tools/archive/refs/tags/${_pkgver}.tar.gz")
sha512sums=('343afa2c7b7afc72696788d3e1a346b929bf7787785a1ec8e224d04a7510aba0f1a08ba62bd535d343c6dd6a3a661dd898754cb7171007be1033cf28a991c684')

prepare() {
  sed -Ei 's/^HCFLAGS =/& -dynamic/' \
    "tools-${_pkgver}/importers/ding2tei/GNUmakefile"
}

build() {
  # Build ding2tei.
  #  * A UTF-8 locale is required.

  local _utf8_locale
  if [[ "$LANG" == *.UTF-8 ]]; then
    _utf8_locale="$LANG"
  else
    _utf8_locale="$(localectl list-locales | grep '\.UTF-8$' | head -n 1)"
    if [[ "$_utf8_locale" == '' ]]; then
      printf 'No UTF-8 locale available.  Cannot continue.'
      return 1
    fi
  fi

  make -C "tools-${_pkgver}/importers/ding2tei" LC_ALL="$_utf8_locale"
}

package() {
  mkdir -p "${pkgdir}/usr/lib/${pkgname}"

  # `*': Exclude `.gitignore'.
  cp -r "tools-${_pkgver}"/* "${pkgdir}/usr/lib/${pkgname}/"

  # ding2tei: Delete unnecessary files.
  cd "${pkgdir}/usr/lib/${pkgname}/importers/ding2tei"
  mv src/preprocess/ .
  find . -regextype posix-extended \
    -mindepth 1 -maxdepth 1 \
    ! -regex '\./(ding2tei|preprocess|GNUmakefile|README|dict)' \
    -exec rm -rf '{}' +

  # Adjust ding2tei Makefile to changed location of `preprocess/'.
  sed -Ei 's/^(srcdir) = .*$/\1 = ./' GNUmakefile

  mkdir -p "${pkgdir}/usr/share/doc/${pkgname}"
  ln -s "/usr/lib/${pkgname}/README.md" \
    "${pkgdir}/usr/share/doc/${pkgname}/"
}
# vim:set ts=2 sw=2 et: