mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-26 16:27:19 +00:00
25 lines
862 B
Bash
25 lines
862 B
Bash
# Maintainer: Evgeniy Alekseev <arcanis dot arch at gmail dot com>
|
|
# Contributor: msimav <mustafa1991 at gmail dot com>
|
|
# Please flag this package out-of-date if you get md5sum error
|
|
|
|
pkgname=nitrux-icon-theme
|
|
pkgver=3.1.8
|
|
pkgrel=2
|
|
pkgdesc="New squared icon set for Linux that sports clean lines, smooth gradients, and simple icon logos"
|
|
url="http://deviantn7k1.deviantart.com/art/Nitrux-OS-Icons-293634207"
|
|
arch=('any')
|
|
license=('Creative Commons')
|
|
source=("http://store.nitrux.in/files/NITRUX.tar.gz")
|
|
depends=('librsvg')
|
|
makedepends=()
|
|
options=(!strip)
|
|
md5sums=('f4c8ebe32df96fa3622212efeccc636b')
|
|
|
|
package() {
|
|
cd "${srcdir}"
|
|
mkdir -p "${pkgdir}/usr/share/icons"
|
|
cp -r NITRUX{,-Buttons} "${pkgdir}/usr/share/icons/"
|
|
find "${pkgdir}/usr/share/icons" -type d -exec chmod 755 '{}' \;
|
|
find "${pkgdir}/usr/share/icons" -type f -exec chmod 644 '{}' \;
|
|
}
|