Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add GoogleEarghPro #496

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions recipes/GoogleEarthPro.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# GoogleEarthPro
# Warning: This application currently cannot run on ubuntu 16.04.7 LTS and lower.ONLY ubuntu 18.04LTS and up are supported. Working hard to fix it.
# More detail:This application require 3.3.0 of the Protocal Buffer runtime libary to run. however ubuntu 16.04.7LTS came with 2.6.1 version. I'm trying to ask the software developer for help. When there's a fix I will patch it.
#Author: Dezbracaty
app: GoogleEarthPro

ingredients:
packages:
- libasound2
- libc6
- libcups2
- libdbus-1-3
- libfontconfig1
- libfreetype6
- libgcc1
- libglib2.0-0
- libglu1-mesa
- libgstreamer1.0-0
- libgstreamer-plugins-base1.0-0
- libproxy1
- libsm6
- libstdc++6
- libx11-6


dist: bionic
sources:
- deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
#- deb http://cn.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse
script:
- wget https://dl.google.com/dl/linux/direct/google-earth-pro-stable_7.3.4_amd64.deb

script:
- sed -e 's/Application;//' -e 's/MultipleArgs/X-MultipleArgs/' ./opt/google/earth/pro/google-earth-pro.desktop >> ./google-earth-pro.desktop
- cp opt/google/earth/pro/product_logo_256.png ./google-earth-pro.png
- echo '#!/bin/bash
- HERE="$(dirname "$(readlink -f "${0}")")"
-
- export LD_LIBRARY_PATH="$HERE/usr/lib":$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH="$HERE/usr/lib/i386-linux-gnu":$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH="$HERE/lib":$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH="$HERE/lib/i386-linux-gnu":$LD_LIBRARY_PATH
- "$HERE/opt/google/earth/pro/googleearth" "$@" | cat' > AppRun
57 changes: 57 additions & 0 deletions recipes/yandexBrowser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#Author: Dezbracaty
app: YandexBrowser

ingredients:
packages:
- binutils
- binutils
- fonts-liberation
- jq
- libasound2
- libatk-bridge2.0-0
- libatk1.0-0
- libatspi2.0-0
- libc6
- libcairo2
- libcups2
- libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3
- libdbus-1-3
- libdrm2
- libexpat1
- libgbm1
- libgcc1
- libglib2.0-0
- libgtk-3-0 | libgtk-4-1
- libnspr4
- libnss3
- libpango-1.0-0
- libx11-6
- libxcb1
- libxcomposite1
- libxdamage1
- libxext6
- libxfixes3
- libxkbcommon0
- libxkbfile1
- libxrandr2
- libxshmfence1
- wget
- xdg-utils

dist: bionic
sources:
- deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
#- deb http://cn.archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse
script:
- wget https://cachev2-rad02.cdn.yandex.net/download.cdn.yandex.net/browser/beta-public/21_8_3_767_26062/Yandex.deb
script:
- cp ./usr/share/applications/yandex-browser-beta.desktop ./
- cp ./opt/yandex/browser-beta/product_logo_256.png ./yandex-browser-beta.png
- echo '#!/bin/bash
- HERE="$(dirname "$(readlink -f "${0}")")"
-
- export LD_LIBRARY_PATH="$HERE/usr/lib":"$HERE/opt/yandex/browser-beta/lib/":$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH="$HERE/usr/lib/i386-linux-gnu":$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH="$HERE/lib":$LD_LIBRARY_PATH
- export LD_LIBRARY_PATH="$HERE/lib/i386-linux-gnu":$LD_LIBRARY_PATH
- "$HERE/opt/yandex/browser-beta/yandex_browser" "$@" | cat' > AppRun