arch-packages/PKGBUILD
Manuel Hüsers 91ffdb46cb Version 5.3
2016-11-12 13:11:10 +01:00

31 lines
1.1 KiB
Bash

# Maintainer: Manuel Hüsers <manuel.huesers@uni-ol.de>
# Contributor: Manuel Hüsers <manuel.huesers@uni-ol.de>
pkgbase=mint-artwork-cinnamon
pkgname=cinnamon-sound-effects
pkgver=5.3
pkgrel=1
pkgdesc='Default artwork for the Cinnamon edition of Linux Mint.'
arch=('any')
license=('GPL')
depends=('cinnamon')
url='http://linuxmint.com'
source=("https://ftp.fau.de/mint/packages/pool/main/m/${pkgbase}/${pkgbase}_${pkgver}.tar.gz"
"${pkgname}.gschema.override")
sha256sums=('31f8a28961ffed11881dea4274118e122cc4c517fce0f6e1b4edd78851adc738'
'ca9d9d22c2ca9b0e257f93bd624fc27a53cab258797e009438a82e9b6902100e')
package_cinnamon-sound-effects() {
pkgdesc="Sound effects from ${pkgbase} package for the Cinnamon desktop."
install="${pkgname}.install"
optdepends=('mint-sounds: Linux Mint system sounds')
cd "${srcdir}/${pkgbase}-${pkgver}"
install -d "${pkgdir}/usr/share/${pkgbase}/sounds"
for file in ./usr/share/${pkgbase}/sounds/*; do
install -Dm644 "${file}" "${pkgdir}/usr/share/${pkgbase}/sounds/"
done
install -Dm644 "../${pkgname}.gschema.override" "${pkgdir}/usr/share/glib-2.0/schemas/${pkgname}.gschema.override"
}