desktop/kdeaccessibility-kmouth/PKGBUILD
Neophytos Kolokotronis 32e2fc564f KDE Apps 14.12
2015-02-19 22:29:49 +00:00

55 lines
1.4 KiB
Bash

# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
# Include global configuration
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=('kdeaccessibility-kmouth')
_pkgname="kmouth"
arch=('x86_64')
pkgver=${_kdever}
pkgrel=1
pkgdesc="Speech synthesizer"
url="http://www.kde.org"
license=('GPL'
'LGPL'
'FDL')
depends=("kde-runtime>=${_kdever}"
"kdelibs>=${_libsver}")
conflicts=("kdeaccessibility-doc")
provides=('kmouth')
install='kdeaccessibility.install'
groups=("kdeaccessibility"
"kde"
"kde-uninstall"
"kde-doc")
options=('docs'
'!header'
'debug'
'log')
makedepends=('pkgconfig'
'cmake'
'automoc4'
"kde-runtime>=${_kdever}"
"kdelibs>=${_libsver}"
"speech-dispatcher>=0.6.7"
'docbook-xsl')
categories=('accessibility')
source=($_mirror/${_pkgname}-$_kdever.tar.xz)
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
build() {
cd ${srcdir}/${_pkgname}-${pkgver}
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
make
}
package() {
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}