mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
29 lines
626 B
Plaintext
29 lines
626 B
Plaintext
# Description: A GTK spell check library
|
|
# URL: https://gitlab.gnome.org/GNOME/gspell
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: enchant gtk3 icu autoconf-archive gobject-introspection vala gtk-doc
|
|
|
|
name=gspell
|
|
version=1.12.2
|
|
release=2
|
|
source=(https://download.gnome.org/sources/$name/1.12/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-nls \
|
|
--disable-debug \
|
|
--enable-introspection=no \
|
|
--enable-vala=no \
|
|
--sysconfdir=/etc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
rm -rf $PKG/usr/lib/*.la
|
|
}
|