mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-26 16:27:19 +00:00
24 lines
845 B
Bash
24 lines
845 B
Bash
# Maintainer: Evgeniy Alekseev <arcanis at archlinux dot org>
|
|
# Contributor: localizator <localizator at ukr dot net>
|
|
|
|
pkgname=nitrux-icon-theme-kde
|
|
pkgver=3.3.0
|
|
pkgrel=1
|
|
pkgdesc="The KDE version of the Nitrux OS Icons"
|
|
url="http://nitrux.in/store/nitrux-for-kde/"
|
|
arch=('any')
|
|
license=('Creative Commons')
|
|
source=("http://nitrux.in/downloads/files/free/${pkgname}-${pkgver}.tar.gz")
|
|
depends=('kdebase-workspace')
|
|
options=(!strip)
|
|
md5sums=('34bc584cc235609ae21c93d39922c73f')
|
|
|
|
package() {
|
|
install -dm755 "${pkgdir}/usr/share/icons"
|
|
cp -r "${srcdir}/NITRUX-KDE" "${pkgdir}/usr/share/icons/"
|
|
find "${pkgdir}/usr/share/icons" -type d -exec chmod 755 '{}' \;
|
|
find "${pkgdir}/usr/share/icons" -type f -exec chmod 644 '{}' \;
|
|
|
|
install -Dm644 "${pkgdir}/usr/share/icons/NITRUX-KDE/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
}
|