diff options
author | root <root@rshg054.dnsready.net> | 2012-01-29 23:15:03 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-29 23:15:03 +0000 |
commit | 39711f3264d3b9de2ff6392649274d6333932457 (patch) | |
tree | de0577b44ca853064f52a0df25ee9f22efd756bc /extra/kdeaccessibility-kmouth/PKGBUILD | |
parent | 738e6c6d93b4c7118e49b38c610abed8b7f7d55a (diff) |
Sun Jan 29 23:15:02 UTC 2012
Diffstat (limited to 'extra/kdeaccessibility-kmouth/PKGBUILD')
-rw-r--r-- | extra/kdeaccessibility-kmouth/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/kdeaccessibility-kmouth/PKGBUILD b/extra/kdeaccessibility-kmouth/PKGBUILD new file mode 100644 index 000000000..07e0f3ead --- /dev/null +++ b/extra/kdeaccessibility-kmouth/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 147814 2012-01-28 10:33:35Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=kdeaccessibility-kmouth +pkgver=4.8.0 +pkgrel=1 +arch=('i686' 'x86_64') +pkgdesc='Speech Synthesizer Frontend' +url='http://kde.org/applications/utilities/kmouth/' +license=('GPL' 'FDL') +groups=('kde' 'kdeaccessibility') +depends=('kdebase-runtime') +makedepends=('cmake' 'automoc4') +install=${pkgname}.install +source=("http://download.kde.org/stable/${pkgver}/src/kmouth-${pkgver}.tar.bz2") +sha1sums=('43ff583d0628005087c948362b1e64dc4d359d88') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../kmouth-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd $srcdir/build + make DESTDIR=$pkgdir install + cd $srcdir/build/doc + make DESTDIR=$pkgdir install +} |