New Package: reversal-icon-theme-20220423_1
This commit is contained in:
parent
f8e6b270cb
commit
2f71e5e445
13 changed files with 494 additions and 0 deletions
1
srcpkgs/reversal-icon-theme-black
Symbolic link
1
srcpkgs/reversal-icon-theme-black
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-blue
Symbolic link
1
srcpkgs/reversal-icon-theme-blue
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-brown
Symbolic link
1
srcpkgs/reversal-icon-theme-brown
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-green
Symbolic link
1
srcpkgs/reversal-icon-theme-green
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-grey
Symbolic link
1
srcpkgs/reversal-icon-theme-grey
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-orange
Symbolic link
1
srcpkgs/reversal-icon-theme-orange
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-pink
Symbolic link
1
srcpkgs/reversal-icon-theme-pink
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-purple
Symbolic link
1
srcpkgs/reversal-icon-theme-purple
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-red
Symbolic link
1
srcpkgs/reversal-icon-theme-red
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
1
srcpkgs/reversal-icon-theme-yellow
Symbolic link
1
srcpkgs/reversal-icon-theme-yellow
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
reversal-icon-theme
|
|
@ -0,0 +1,157 @@
|
||||||
|
# Template file for 'flat-remix-icon-theme'
|
||||||
|
pkgname=flat-remix-icon-theme
|
||||||
|
version=20211214
|
||||||
|
revision=1
|
||||||
|
build_style=meta
|
||||||
|
depends="flat-remix-icon-theme-black \
|
||||||
|
flat-remix-icon-theme-blue \
|
||||||
|
flat-remix-icon-theme-brown \
|
||||||
|
flat-remix-icon-theme-cyan \
|
||||||
|
flat-remix-icon-theme-green \
|
||||||
|
flat-remix-icon-theme-grey \
|
||||||
|
flat-remix-icon-theme-magenta \
|
||||||
|
flat-remix-icon-theme-orange \
|
||||||
|
flat-remix-icon-theme-red \
|
||||||
|
flat-remix-icon-theme-teal \
|
||||||
|
flat-remix-icon-theme-violet \
|
||||||
|
flat-remix-icon-theme-yellow"
|
||||||
|
nostrip=yes
|
||||||
|
wrksrc=flat-remix-${version}
|
||||||
|
short_desc="Icon theme inspired by material design with colorful palette with some shadows, highlights, and gradients for some depth."
|
||||||
|
maintainer="Kevin F. <https://github.com/KF-Art>"
|
||||||
|
license="GPL-3.0"
|
||||||
|
homepage="https://github.com/daniruiz/flat-remix"
|
||||||
|
distfiles="${homepage}/archive/refs/tags/${version}.tar.gz"
|
||||||
|
checksum=1c899ded7191bfbad16d99265bfb801d48da5af69e4f7baf090200ee421587da
|
||||||
|
|
||||||
|
flat-remix-icon-theme-black_package() {
|
||||||
|
color=Black
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-blue_package() {
|
||||||
|
color=Blue
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-brown_package() {
|
||||||
|
color=Brown
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-cyan_package() {
|
||||||
|
color=Cyan
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-green_package() {
|
||||||
|
color=Green
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-grey_package() {
|
||||||
|
color=Grey
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-magenta_package() {
|
||||||
|
color=Magenta
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-orange_package() {
|
||||||
|
color=Orange
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-red_package() {
|
||||||
|
color=Red
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-teal_package() {
|
||||||
|
color=Teal
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-violet_package() {
|
||||||
|
color=Violet
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-yellow_package() {
|
||||||
|
color=Yellow
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
170
srcpkgs/reversal-icon-theme/flat-remix-icon-theme/template
Normal file
170
srcpkgs/reversal-icon-theme/flat-remix-icon-theme/template
Normal file
|
@ -0,0 +1,170 @@
|
||||||
|
# Template file for 'flat-remix-icon-theme'
|
||||||
|
pkgname=flat-remix-icon-theme
|
||||||
|
version=20211214
|
||||||
|
revision=1
|
||||||
|
build_style=meta
|
||||||
|
repository=cereus-extra
|
||||||
|
depends="${pkgname}-black \
|
||||||
|
${pkgname}-blue \
|
||||||
|
${pkgname}-brown \
|
||||||
|
${pkgname}-cyan \
|
||||||
|
${pkgname}-green \
|
||||||
|
${pkgname}-grey \
|
||||||
|
${pkgname}-magenta \
|
||||||
|
${pkgname}-orange \
|
||||||
|
${pkgname}-red \
|
||||||
|
${pkgname}-teal \
|
||||||
|
${pkgname}-violet \
|
||||||
|
${pkgname}-yellow"
|
||||||
|
nostrip=yes
|
||||||
|
wrksrc=flat-remix-${version}
|
||||||
|
short_desc="Icon theme inspired by material design with colorful palette with some shadows, highlights, and gradients for some depth."
|
||||||
|
maintainer="Kevin F. <https://github.com/KF-Art>"
|
||||||
|
license="GPL-3.0"
|
||||||
|
homepage="https://github.com/daniruiz/flat-remix"
|
||||||
|
distfiles="${homepage}/archive/refs/tags/${version}.tar.gz"
|
||||||
|
checksum=1c899ded7191bfbad16d99265bfb801d48da5af69e4f7baf090200ee421587da
|
||||||
|
|
||||||
|
flat-remix-icon-theme-black_package() {
|
||||||
|
color=Black
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-blue_package() {
|
||||||
|
color=Blue
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-brown_package() {
|
||||||
|
color=Brown
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-cyan_package() {
|
||||||
|
color=Cyan
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-green_package() {
|
||||||
|
color=Green
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-grey_package() {
|
||||||
|
color=Grey
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-magenta_package() {
|
||||||
|
color=Magenta
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-orange_package() {
|
||||||
|
color=Orange
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-red_package() {
|
||||||
|
color=Red
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-teal_package() {
|
||||||
|
color=Teal
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-violet_package() {
|
||||||
|
color=Violet
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
flat-remix-icon-theme-yellow_package() {
|
||||||
|
color=Yellow
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
vmkdir ${icondir}
|
||||||
|
vcopy Flat-Remix-${color}-* ${icondir}
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
}
|
157
srcpkgs/reversal-icon-theme/template
Normal file
157
srcpkgs/reversal-icon-theme/template
Normal file
|
@ -0,0 +1,157 @@
|
||||||
|
# Template file for 'reversal-icon-theme'
|
||||||
|
pkgname=reversal-icon-theme
|
||||||
|
version=20220423
|
||||||
|
revision=1
|
||||||
|
build_style=meta
|
||||||
|
repository=cereus-extra
|
||||||
|
depends="${pkgname}-yellow
|
||||||
|
${pkgname}-blue
|
||||||
|
${pkgname}-green
|
||||||
|
${pkgname}-purple
|
||||||
|
${pkgname}-brown
|
||||||
|
${pkgname}-grey
|
||||||
|
${pkgname}-red
|
||||||
|
${pkgname}-black
|
||||||
|
${pkgname}-orange
|
||||||
|
${pkgname}-pink"
|
||||||
|
nostrip=yes
|
||||||
|
icondir=usr/share/icons
|
||||||
|
hostmakedepends="git gtk-update-icon-cache"
|
||||||
|
short_desc="A colorful Design Rectangle icon theme for Linux desktops"
|
||||||
|
maintainer="Kevin F. <https://github.com/KF-Art>"
|
||||||
|
license="GPL-3.0"
|
||||||
|
homepage="https://github.com/yeyushengfan258/Reversal-icon-theme"
|
||||||
|
|
||||||
|
do_fetch() {
|
||||||
|
git clone ${homepage} ${wrksrc}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-yellow_package() {
|
||||||
|
color=yellow
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-blue_package() {
|
||||||
|
color=blue
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-green_package() {
|
||||||
|
color=green
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-purple_package() {
|
||||||
|
color=purple
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-brown_package() {
|
||||||
|
color=brown
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-grey_package() {
|
||||||
|
color=grey
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-red_package() {
|
||||||
|
color=red
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-black_package() {
|
||||||
|
color=black
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-orange_package() {
|
||||||
|
color=orange
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
reversal-icon-theme-pink_package() {
|
||||||
|
color=pink
|
||||||
|
nostrip=yes
|
||||||
|
short_desc+=" - ${color} variant"
|
||||||
|
pkg_install() {
|
||||||
|
icondir=usr/share/icons
|
||||||
|
# vmkdir ${icondir}
|
||||||
|
mkdir -p ${DESTDIR}/${icondir}
|
||||||
|
./install.sh -${color} -d ${DESTDIR}/${icondir}
|
||||||
|
vlicense COPYING
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue