mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-26 16:27:19 +00:00
27 lines
971 B
Bash
27 lines
971 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.2.1
|
|
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=('custom:Creative Commons')
|
|
source=("http://store.nitrux.in/files/NITRUX.tar.gz")
|
|
depends=('librsvg')
|
|
makedepends=()
|
|
options=(!strip)
|
|
md5sums=('1f64993209476e14703417b39ddaf1b8')
|
|
|
|
package() {
|
|
cd "${srcdir}"
|
|
mkdir -p "${pkgdir}/usr/share/icons"
|
|
cp -r NITRUX "${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/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
|
|
}
|