diff --git a/recipes/GoogleEarthPro.yml b/recipes/GoogleEarthPro.yml new file mode 100644 index 00000000..d9dfed22 --- /dev/null +++ b/recipes/GoogleEarthPro.yml @@ -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 diff --git a/recipes/yandexBrowser.yml b/recipes/yandexBrowser.yml new file mode 100644 index 00000000..8a3cc073 --- /dev/null +++ b/recipes/yandexBrowser.yml @@ -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