diff --git a/apps/LibrePCB/description b/apps/LibrePCB/description new file mode 100644 index 0000000..0d88a27 --- /dev/null +++ b/apps/LibrePCB/description @@ -0,0 +1 @@ +Create circuit boards. diff --git a/apps/LibrePCB/icon-24.png b/apps/LibrePCB/icon-24.png new file mode 100644 index 0000000..6d8c004 Binary files /dev/null and b/apps/LibrePCB/icon-24.png differ diff --git a/apps/LibrePCB/icon-64.png b/apps/LibrePCB/icon-64.png new file mode 100644 index 0000000..f1edbf5 Binary files /dev/null and b/apps/LibrePCB/icon-64.png differ diff --git a/apps/LibrePCB/install-32 b/apps/LibrePCB/install-32 new file mode 100755 index 0000000..5cdae11 --- /dev/null +++ b/apps/LibrePCB/install-32 @@ -0,0 +1,27 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +# Get dependencies +"${DIRECTORY}/pkg-install" "flatpak" "$(dirname "$0")" || exit 1 + +flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo + +flatpak install -y librepcb + +echo "[Desktop Entry] +Version=1.0 +Terminal=false +Icon=$(dirname "$0")/icon-64.png +Type=LibrePCB +Categories=Development;Electronics; +Exec=flatpak run org.librepcb.LibrePCB +Keywords=pcb;circuit;board;Projectmanager; +Name=KiCad +Comment=Electronic Design Automation suite" > ~/.local/share/applications/librepcb.desktop || error "Failed to create menu button!" + diff --git a/apps/LibrePCB/uninstall b/apps/LibrePCB/uninstall new file mode 100755 index 0000000..3b7ded4 --- /dev/null +++ b/apps/LibrePCB/uninstall @@ -0,0 +1,11 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +#if your app installs any packages, keep this command here so those packages will be removed. +"${DIRECTORY}/purge-installed" "$(dirname "$0")" || exit 1 diff --git a/apps/LibrePCB/website b/apps/LibrePCB/website new file mode 100644 index 0000000..371bd54 --- /dev/null +++ b/apps/LibrePCB/website @@ -0,0 +1 @@ +https://librepcb.discourse.group/t/how-to-install-librepcb-on-a-raspberry-pi/212