Files
guru/dev-embedded/squareline-studio/squareline-studio-1.6.0.ebuild
2026-03-31 23:22:49 +08:00

42 lines
1.0 KiB
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
MY_PV="$(ver_rs 1- '_')"
inherit desktop xdg
DESCRIPTION="Visual drag-and-drop UI editor for LVGL"
HOMEPAGE="https://squareline.io"
SRC_URI="
https://static.squareline.io/downloads/SquareLine_Studio_Linux_v${MY_PV}.zip -> ${P}.zip
"
S="${WORKDIR}"
LICENSE="all-rights-reserved"
SLOT="0/${PV}"
KEYWORDS="-* ~amd64"
BDEPEND="
app-arch/unzip
"
QA_PREBUILT="*"
src_install() {
# desktop entry
sed "s|__folder__|/opt/${P}|g" squareline_studio.desktop.template > "${P}.desktop" || die
# install
insinto "/opt/${P}"
doins -r *
for x in $(find .) ; do
# Fix python script permissions
[[ "${x: -3}" == ".py" ]] && fperms 0755 "/opt/${P}/${x}"
# Use \x7fELF header to separate ELF executables and libraries
[[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] && fperms 0755 "/opt/${P}/${x}"
done
domenu "${P}.desktop"
dosym ../../opt/"${P}"/"SquareLine_Studio.x86_64" /usr/bin/"${P}"
}