mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
27 lines
726 B
Bash
27 lines
726 B
Bash
|
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
||
|
# Contributor: Siarhei Kukharski <sinco@tut.by>
|
||
|
|
||
|
pkgname=xneur
|
||
|
pkgver=0.16.0
|
||
|
pkgrel=1
|
||
|
pkgdesc="X Neural Switcher is a text analyser, it detects the language of input and corrects it if needed"
|
||
|
url="http://www.xneur.ru"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
depends=('gstreamer0.10' 'enchant' 'libnotify')
|
||
|
source=("http://dists.xneur.ru/release-${pkgver}/tgz/${pkgname}-${pkgver}.tar.bz2")
|
||
|
md5sums=('8c375615f40bca329a37399bdf723b99')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/$pkgname-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--without-xosd
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${srcdir}/$pkgname-$pkgver
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|