29 lines
916 B
Bash
29 lines
916 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
|
|
# Contributor: Roman Kyrylych <roman@archlinux.org>
|
|
# Contributor: Ben <ben@benmazer.net>
|
|
|
|
pkgname=gtkspell3
|
|
pkgver=3.0.10
|
|
pkgrel=3
|
|
pkgdesc='Provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget'
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
url='http://gtkspell.sourceforge.net/'
|
|
license=('GPL')
|
|
depends=('gtk3' 'enchant')
|
|
makedepends=('intltool' 'gobject-introspection' 'vala')
|
|
source=("https://downloads.sourceforge.net/gtkspell/$pkgname-$pkgver.tar.xz")
|
|
sha256sums=('b040f63836b347eb344f5542443dc254621805072f7141d49c067ecb5a375732')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|