mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
28 lines
973 B
Bash
28 lines
973 B
Bash
# Maintainer: FranzMari <franzmari[at]chakra-project[dot]org>
|
|
# Contributor : Sascha Pfau <MrPeacock@gmail.com>
|
|
|
|
pkgname=simon
|
|
pkgver=0.4.1
|
|
pkgrel=5
|
|
pkgdesc="A ready-to-use interface for the julius CSR engine for a handicapped person, which is not able to use the keyboard well."
|
|
arch=('x86_64')
|
|
url="https://projects.kde.org/projects/extragear/accessibility/simon"
|
|
license=('GPL')
|
|
screenshot="http://kde-apps.org/CONTENT/content-pre1/73815-1.png"
|
|
depends=('boost' 'qwt6' 'portaudio' 'qt' 'kdelibs' 'hicolor-icon-theme' 'kde-runtime')
|
|
makedepends=('automoc4' 'cmake' 'flex' 'docbook-xsl')
|
|
optdepends=('docbook-xsl' 'sphinxbase' 'htk: create and modify the speech models')
|
|
source=(http://download.kde.org/stable/$pkgname/$pkgver/src/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('8f3e87043a145e44d80c1d95fae97d33')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr .
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=${pkgdir} install
|
|
}
|