mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
49 lines
1.4 KiB
Bash
49 lines
1.4 KiB
Bash
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
|
|
|
|
|
|
|
|
# Maintainer: 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=3
|
|
pkgdesc="Speech synthesizer"
|
|
url="http://www.kde.org"
|
|
license=('GPL' 'LGPL' 'FDL')
|
|
depends=("kde-runtime>=${_kdever}" "kdelibs>=${_kdever}")
|
|
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>=${_kdever}" "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}
|
|
|
|
msg "starting build ..."
|
|
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 || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${_pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|
|
sha256sums=('f47d0d825398052bfd270ad1cb2ef106ec9d5a8d23f8d247c7df24360fba05f5')
|