mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-26 16:27:19 +00:00
26 lines
926 B
Bash
26 lines
926 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=1
|
|
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=("${pkgname}-${pkgver}.7z::http://nitrux.weebly.com/uploads/1/9/8/8/19881405/nitrux.7z")
|
|
depends=('librsvg')
|
|
makedepends=('p7zip')
|
|
makedepends=()
|
|
options=(!strip)
|
|
md5sums=('74b41c141214b521a8dcafcbe6f2fb9f')
|
|
|
|
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 '{}' \;
|
|
}
|