diff options
author | 2022-06-27 16:38:24 +0200 | |
---|---|---|
committer | 2022-06-27 16:38:32 +0200 | |
commit | 84fa78b7d33e10c51bf1b52a22de4963c537b367 (patch) | |
tree | 35c6b5fab3c91ca39017f7f684a05b8a333805e7 /x11-themes | |
parent | gui-apps/swaync: add 0.6.3, drop 0.6.1 (diff) | |
download | guru-84fa78b7d33e10c51bf1b52a22de4963c537b367.tar.gz guru-84fa78b7d33e10c51bf1b52a22de4963c537b367.tar.bz2 guru-84fa78b7d33e10c51bf1b52a22de4963c537b367.zip |
x11-themes/phinger-xcursors: new package, add 1.1
Signed-off-by: Alexey Zapparov <alexey@zapparov.com>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/phinger-xcursors/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/phinger-xcursors/metadata.xml | 12 | ||||
-rw-r--r-- | x11-themes/phinger-xcursors/phinger-xcursors-1.1.ebuild | 24 |
3 files changed, 37 insertions, 0 deletions
diff --git a/x11-themes/phinger-xcursors/Manifest b/x11-themes/phinger-xcursors/Manifest new file mode 100644 index 000000000..e7a7193da --- /dev/null +++ b/x11-themes/phinger-xcursors/Manifest @@ -0,0 +1 @@ +DIST phinger-xcursors-1.1.tar.bz2 943817 BLAKE2B d56b88e65aaa7f689a94f0d2cfdb644db89694dc483720047973106a6f76e7e49dab17fa895646d78eaafda55ed01fba129bd7016f4ae0e0414c861270289296 SHA512 437d67a77f0abfda65e974b3a63f6452078f3ae86f3fe63d0069ad456922e6244cb6ec57f5cdcddf7c03e96e43349c3774c157c35efd6c7a2e16a84a7dbc6480 diff --git a/x11-themes/phinger-xcursors/metadata.xml b/x11-themes/phinger-xcursors/metadata.xml new file mode 100644 index 000000000..312ec5262 --- /dev/null +++ b/x11-themes/phinger-xcursors/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>alexey@zapparov.com</email> + <name>Alexey Zapparov</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/phisch/phinger-cursors/issues</bugs-to> + <remote-id type="github">phisch/phinger-cursors</remote-id> + </upstream> +</pkgmetadata> diff --git a/x11-themes/phinger-xcursors/phinger-xcursors-1.1.ebuild b/x11-themes/phinger-xcursors/phinger-xcursors-1.1.ebuild new file mode 100644 index 000000000..d6faf09b3 --- /dev/null +++ b/x11-themes/phinger-xcursors/phinger-xcursors-1.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Most likely the most over engineered cursor theme" +HOMEPAGE="https://github.com/phisch/phinger-cursors" +SRC_URI="https://github.com/phisch/phinger-cursors/releases/download/v${PV}/phinger-cursors-variants.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="CC-BY-SA-4.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="x11-libs/libXcursor" + +S="${WORKDIR}" + +src_install() { + insinto /usr/share/cursors/xorg-x11/Phinger + doins -r phinger-cursors/* + + insinto /usr/share/cursors/xorg-x11/Phinger-Light + doins -r phinger-cursors-light/* +} |