diff options
Diffstat (limited to 'trinity-apps/dolphin')
-rw-r--r-- | trinity-apps/dolphin/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/dolphin/dolphin-14.1.0.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/trinity-apps/dolphin/Manifest b/trinity-apps/dolphin/Manifest index 4ec41cb4..8ded0d29 100644 --- a/trinity-apps/dolphin/Manifest +++ b/trinity-apps/dolphin/Manifest @@ -1 +1,2 @@ DIST dolphin-trinity-14.0.13.tar.xz 1133696 BLAKE2B c62a7c754f10365b5e9017d0b6072734382461de1732039843c9b6cac7cd46afb606b22c701360ae5a3762ba8dede01d7e79f54d8ad60b7a249ce85f31971495 SHA512 63d18c358791cb37320b15045d7e5fdb2422e7caf7c35bdfec9b65f41af4874effa93e57a6e39a0dcd7e8fc3d7ca409f72a397c669ed3f46d81a57e19665ae64 +DIST dolphin-trinity-14.1.0.tar.xz 1135608 BLAKE2B f19c71dd9ee9a84b6485b425d75055f0fd65e94c6d7b634b382db4cfe0a2e7a93db34a3af7f7aacf4a3db74c44df9bdc66bca1102e5a8067c9e1daadde276dd8 SHA512 aa83b04fd0b03d3150a6b5aa9d4b0746235afadfd966d8ae5b464b67dedda96d1cc3f2924c8c32c3d14c075407426c744b003d998dd59670eed0ae6a9fe260ab diff --git a/trinity-apps/dolphin/dolphin-14.1.0.ebuild b/trinity-apps/dolphin/dolphin-14.1.0.ebuild new file mode 100644 index 00000000..0323d92d --- /dev/null +++ b/trinity-apps/dolphin/dolphin-14.1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2023 Gentoo Authors +# Copyright 2020-2023 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +TRINITY_EXTRAGEAR_PACKAGING="yes" +TRINITY_HANDBOOK="optional" + +TRINITY_LANGS="de el es et fr he it nl pl ru sk" +TRINITY_MODULE_TYPE="applications/system" +inherit trinity-base-2 + +DESCRIPTION="File manager for TDE" +HOMEPAGE="https://trinitydesktop.org/" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="14" +if [[ ${PV} != *9999* ]] ; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +src_configure() { + local mycmakeargs=( + -DBUILD_TRANSLATIONS=ON + ) + + trinity-base-2_src_configure +} |