Signed-off-by: Alexander Kurakin <kuraga333@mail.ru>pull/34/head
parent
36c92c8180
commit
aec4cd74b3
@ -1,2 +1,3 @@
|
||||
DIST elementary-icon-theme-2.7.1-r5.tar.bz2 2693041 BLAKE2B b6d1a0808652a796ed2c30477858ac94c2726e6f1103be38c9beac0dbd8c4184e1691c6de79ff2c48ccc3e34f90d8d9c9d77cd68059aaa54b56817b5b9fd446c SHA512 c9b2c8db4cd018778cd8037d365d10cd1332ad060bc6bb80a65a759c5e16c68362f73a576e000fe591b9970d4c56958166a0b8e538edb4707eced66f6d3da19d
|
||||
DIST elementary-icon-theme-7.1.0.tar.gz 4188589 BLAKE2B 7bc3b9876c67b82fb4c44e36af05d33d1e20072f896099a8f69279b5e8f80ba99e5b135c28b32426012603106c2a26d542f636bcf471224f3890f9692c3bd77a SHA512 4a7114416ad7a7aa4f0d81365354838080cd14b7aeb8c6a7a16cb9910fdc9653923d3133ba64d5811a478ab655c9197904b7f933ecd00e6606165b737d3342a8
|
||||
DIST elementary-icon-theme-7.2.0.tar.gz 4128203 BLAKE2B a9046ecee0c01e8bfab8eafad92a47d765f926c0ff5c5993b605c9f30f1aa508b7d20b2ce079241d92f70ee72fa0c6814e953910bccbc61d04e2c757619c517a SHA512 b1e5d13e317a48dd8480a98703816544880658fba3b2c946d33b425d2d8bf21b717d760ac45a4f5b1167f48282586b3c1ae5329501fe71f482e6c43cb8f6f522
|
||||
|
@ -0,0 +1,50 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit meson xdg-utils
|
||||
|
||||
DESCRIPTION="Named, vector icons for elementary OS"
|
||||
HOMEPAGE="https://github.com/elementary/icons"
|
||||
SRC_URI="https://github.com/elementary/icons/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
RESTRICT="binchecks strip"
|
||||
|
||||
BDEPEND="
|
||||
gnome-base/librsvg
|
||||
x11-apps/xcursorgen
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
RDEPEND="
|
||||
x11-themes/hicolor-icon-theme
|
||||
"
|
||||
|
||||
S="${WORKDIR}/icons-${PV}"
|
||||
DOCS=( README.md COPYING CONTRIBUTING.md )
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
# https://github.com/elementary/icons/issues/701
|
||||
-Dvolume_icons=false
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
# https://github.com/elementary/icons/pull/1177
|
||||
find . -type f -name '*.svg' -exec chmod -x "{}" ";"
|
||||
meson_src_install
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
xdg_icon_cache_update
|
||||
}
|
Loading…
Reference in new issue