mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 10:42:21 +01:00
26 lines
537 B
Plaintext
26 lines
537 B
Plaintext
# Description: A GTK spell check library
|
|
# URL: https://xfce.org
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: enchant gtk3 icu autoconf-archive git gobject-introspection vala gtk-doc
|
|
|
|
name=gspell
|
|
version=1.12.1
|
|
release=1
|
|
source=(https://download.gnome.org/core/43/43.7/sources/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--disable-nls \
|
|
--disable-debug \
|
|
--sysconfdir=/etc
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/gtk-doc
|
|
}
|