# Description: A wrapper library for generic spell checking.
# URL: https://rrthomas.github.io/enchant/
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: aspell glib
# Optional: hunspell

name=enchant
version=2.8.16
release=1
source=(https://github.com/rrthomas/$name/releases/download/v$version/$name-$version.tar.gz)

build() {
  cd $name-$version

  ./configure --prefix=/usr --enable-relocatable

  make
  make DESTDIR="$PKG" install

  rm -rf "$PKG"/usr/share/doc
  find "$PKG" -name '*.la' -delete
}
