diff --git a/kdeplasma-wallpapers-dayandnight/PKGBUILD b/kdeplasma-wallpapers-dayandnight/PKGBUILD index 8e02b3d..e8a3ef3 100644 --- a/kdeplasma-wallpapers-dayandnight/PKGBUILD +++ b/kdeplasma-wallpapers-dayandnight/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.3 pkgrel=1 pkgdesc="Wallpaper plugin that allows you to select different wallpaper for day and night" arch=('i686' 'x86_64') -url="http://kde-look.org/content/show.php?action=content&content=118636" +url="http://kde-look.org/content/show.php?content=118636" license=('GPL') depends=('kdebase-workspace' 'kdebindings-python2') source=(http://kde-look.org/CONTENT/content-files/118636-${_pkgname}.plasmoid) diff --git a/kwin-scripts-tiling/PKGBUILD b/kwin-scripts-tiling/PKGBUILD index 6d1810e..8ca79d9 100644 --- a/kwin-scripts-tiling/PKGBUILD +++ b/kwin-scripts-tiling/PKGBUILD @@ -3,15 +3,15 @@ pkgname=kwin-scripts-tiling _pkgname=tiling -pkgver=1.3.2 -pkgrel=2 +pkgver=1.3.3 +pkgrel=1 pkgdesc="Tiling script for kwin" arch=('any') url="http://kde-look.org/content/show.php?content=161151" license=('GPL') depends=('kdebase-workspace') source=(http://kde-look.org/CONTENT/content-files/161151-${_pkgname}.kwinscript) -md5sums=('2de0fc923b1fdf709ce2083e025080f0') +md5sums=('9ce4598e0d8d39128068d279169a0572') package() { diff --git a/voxforge-am-julius-nightly/PKGBUILD b/voxforge-am-julius-nightly/PKGBUILD new file mode 100644 index 0000000..3485c85 --- /dev/null +++ b/voxforge-am-julius-nightly/PKGBUILD @@ -0,0 +1,38 @@ +# Contributor: Evgeniy Alekseev +# Contributor: Matt Harrison +# Contributor: Muhammad Qadri +# This PKGBUILD is maintained at https://github.com/matt-h/aur-pkgbuilds/tree/master/voxforge-am-julius + +pkgname=voxforge-am-julius-nightly +pkgver=20140108 +pkgrel=1 +pkgdesc="Acoustic model information for use with Julius voice recognition software" +arch=('any') +conflicts=(voxforge-am-julius) +provides=(voxforge-am-julius) +replaces=(voxforge-am-julius) +url="http://www.voxforge.org/" +license=('GPL') +pkgver() { + printf $(($(date +%Y%m%d)-1)) +} +_build_date=$(pkgver | cut -c1-4)-$(pkgver | cut -c5-6)-$(pkgver | cut -c7-8) +source=("julius-acousticmodel.tgz") +true && source=("julius-acousticmodel.tgz::http://www.repository.voxforge1.org/downloads/Nightly_Builds/AcousticModel-${_build_date}/Julius-4.2-Quickstart-Linux_AcousticModel-${_build_date}.tgz") +install=${pkgname}.install +md5sums=('SKIP') + +package() { + cd "${srcdir}" + + install -Dm644 "Sample.jconf" "${pkgdir}/usr/share/voxforge/julius/julius.jconf" + install -dm755 "${pkgdir}/usr/share/voxforge/julius/grammar/" + install -m644 -t "${pkgdir}/usr/share/voxforge/julius/grammar/" "grammar/"* + install -dm755 "${pkgdir}/usr/share/voxforge/julius/acoustic_model_files/" + install -m644 -t "${pkgdir}/usr/share/voxforge/julius/acoustic_model_files/" "acoustic_model_files/"* + + # remove license files + rm "${pkgdir}/usr/share/voxforge/julius/"{acoustic_model_files,grammar}/LICENSE +} + +# vim:set ts=2 sw=2 et: diff --git a/voxforge-am-julius-nightly/voxforge-am-julius-nightly.install b/voxforge-am-julius-nightly/voxforge-am-julius-nightly.install new file mode 100644 index 0000000..6924d1d --- /dev/null +++ b/voxforge-am-julius-nightly/voxforge-am-julius-nightly.install @@ -0,0 +1,11 @@ +post_install() { + cat << EOF +To run, use + julius -input mic -C /usr/share/voxforge/julius/julius.jconf + +To manipulate, copy the contents of /usr/share/voxforge/julius to a local +folder (i.e. .voxforge/julius/). +EOF +} + +# vim:set ts=2 sw=2 et: