mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
28 lines
851 B
Bash
28 lines
851 B
Bash
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
# Maintainer (i686): Phil Miller <philm@chakra-project[dog]org>
|
|
# Maintainer (x86_64): Manuel Tortosa <manutortosa@chakra-project@org>
|
|
|
|
pkgname=sound-theme-freedesktop
|
|
pkgver=0.7
|
|
pkgrel=1
|
|
pkgdesc="Freedesktop sound theme"
|
|
arch=(any)
|
|
license=('custom')
|
|
makedepends=('intltool')
|
|
source=(http://people.freedesktop.org/~mccann/dist/${pkgname}-${pkgver}.tar.bz2
|
|
CREDITS)
|
|
url="http://freedesktop.org/wiki/Specifications/sound-theme-spec"
|
|
md5sums=('7bcad4fa54570f80c612012bce66f60f'
|
|
'3213e601ce34bb42ddc3498903ac4e69')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR="${pkgdir}" install
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 "${srcdir}/CREDITS" "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|