blob: f6c61f4d59388768ba8743ffa237265ef1b319c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Victory Icon Theme
# By Darin (newhoa)
#
# AUR Package Contributor: Christopher Bero <bigbero@gmail.com>
#
# Additional Credits: Credits file
# License: GPLv3
pkgname=victory-icon-theme
pkgver=1.0
pkgrel=5
pkgdesc="An icon project by Darin"
arch=('any')
url="https://web.archive.org/web/20231229141916/https://old.reddit.com/r/linux/comments/41jbjc/an_icon_theme_im_working_on_anyone_willing_to/"
license=('GPL3')
makedepends=('bash')
optdepends=('lxde-icon-theme: fallback icons'
'tango-icon-theme: fallback icons'
'gnome-icon-theme: fallback icons'
'hicolor-icon-theme: fallback icons'
'fvwm-crystal: fallback icons'
'elementary-xfce-icons: fallback icons'
'elementary-icon-theme: fallback icons'
'humanity-icon-theme: fallback icons')
source=("https://github.com/ctag/Victory-Icon-Theme/releases/download/0.0.1/Victory.Icon.Theme.2016-01-17.tar.gz")
md5sums=('229600b74a43cabd3a395bfa8f6b3697')
package() {
echo
echo "============================================================================="
echo "Victory Icon Theme is currently in alpha, be aware of this before installing."
echo "============================================================================="
echo
cd "${srcdir}/Victory Icon Theme"
install -d "${pkgdir}/usr/share/icons/${pkgname}"
cp -rf * "${pkgdir}/usr/share/icons/${pkgname}"
}
|