mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 18:03:15 +08:00
25 lines
672 B
Bash
25 lines
672 B
Bash
pkgname=gtkspell
|
|
pkgver=2.0.16
|
|
pkgrel=2
|
|
url="http://gtkspell.sourceforge.net/"
|
|
pkgdesc="GtkSpell provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('gtk2' 'enchant' 'filesystem-extra')
|
|
makedepends=('intltool')
|
|
options=('!libtool')
|
|
install=gtkspell.install
|
|
source=(http://gtkspell.sourceforge.net/download/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('f75dcc9338f182c571b321d37c606a94')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/extra/usr --disable-gtk-doc
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|