23 lines
554 B
Plaintext
23 lines
554 B
Plaintext
|
# Description: spell checking API for GTK applications
|
||
|
# URL: https://gitlab.gnome.org/GNOME/gspell/
|
||
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
||
|
# Depends on: gtk3 enchant iso-codes
|
||
|
# Optional: vala gobject-introspection
|
||
|
|
||
|
name=gspell
|
||
|
version=1.8.4
|
||
|
release=1
|
||
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
./configure --prefix=/usr \
|
||
|
--disable-nls
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
# clean up footprint
|
||
|
rm -f $PKG/usr/lib/*.la
|
||
|
rm -rf $PKG/usr/share/gtk-doc
|
||
|
}
|