tis-sketchup-desktop icon

SketchUp Desktop

Paquet d’installation silencieuse pour SketchUp Desktop

26.0.428-0
Media
Media

  • package: tis-sketchup-desktop
  • name: SketchUp Desktop
  • version: 26.0.428-0
  • categories: Media
  • maintainer: WAPT Team,Tranquil IT,Gwenaël ADAM
  • licence: Proprietary
  • target_os: macos
  • architecture: x64
  • signature_date:
  • size: 1.50 Go
  • homepage : https://sketchup.trimble.com

package           : tis-sketchup-desktop
version           : 26.0.428-0
architecture      : x64
section           : base
priority          : optional
name              : SketchUp Desktop
categories        : Media
maintainer        : WAPT Team,Tranquil IT,Gwenaël ADAM
description       : SketchUp is an architecture-oriented 3D modeling, animation, and mapping software.
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : macos
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : SketchUp est un logiciel de modélisation 3D, d'animation et de cartographie orienté vers l'architecture.
description_pl    : SketchUp to oprogramowanie do modelowania, animacji i mapowania 3D zorientowane na architekturze.
description_de    : SketchUp ist eine architekturorientierte 3D-Modellierungs-, Animations- und Mapping-Software.
description_es    : SketchUp es un software de modelado 3D, animación y mapeo orientado a la arquitectura.
description_pt    : O SketchUp é um software de modelação 3D, animação e mapeamento orientado para arquitetura.
description_it    : SketchUp è un software orientato all'architettura per modellazione, animazione e mappatura.
description_nl    : SketchUp is een architectuurgerichte 3D-modellering, animatie en mappingsoftware.
description_ru    : SketchUp — это архитектурно-ориентированное программное обеспечение для 3D-моделирования, анимации и картирования.
audit_schedule    : 
editor            : 
keywords          : 
licence           : Proprietary
homepage          : https://sketchup.trimble.com
package_uuid      : bc726b0c-0112-4d49-a6a0-3b8056358f6d
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 4f313f8875ddb11f3b9dc63b8b4ec2ae606dcc9361f2491f827198a37eb5f109
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-12-06T11:25:46.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : ug/PTfu/ksyYSoReCgiA1V/D1BSm4xVaSq8pQUisrtzH89gPRgEGTaMWxrkVVPisz+Mc7zYcQVQPxt5lBOjHrpS0OWdZkeCcWJOfcRNPzWpW+4+TZt7KNP8u4AEiwuB3lfyJ3zA6etH29mHQ5JsWxkAZfXlsujdIScnbzZktvYGGuKOE0IMbUgmkfzC4nKhXH2jvZZB8MWxXha5Hsl5RHPPfNg9p0PpPZHyDQVspsy+nwkOLdERii9MLNIYk85kYfT0o/N/lb1mJN3BSnheUPQYcGZVGan3eWqmvhqZE2y7MO9xlpaFzYPrlwvMEWxxsAu5oWM8eOe1lHQCzL9bPYg==

# -*- coding: utf-8 -*-
from setuphelpers import *

def install():
    mount_path = mount_dmg(glob.glob("*.dmg")[0])
    install_app(makepath(mount_path, "SketchUp 2026", "SketchUp.app"))
    install_app(makepath(mount_path, "SketchUp 2026", "LayOut.app"))
    unmount_dmg(mount_path)

def uninstall():
    uninstall_app("SketchUp.app")
    uninstall_app("LayOut.app")

# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import re
import requests

bin_contains = "SketchUp"


def update_package():
    # Declaring local variables
    result = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name

    # Getting latest version from official sources
    base_url = "https://sketchup.trimble.com/en/download/all"
    find_all = bs_find_all(base_url, 'a', 'href')

    for find in find_all:
        if find["href"].endswith(".dmg"):
            latest_bin = find["href"].split("/")[-1]
            download_url = find["href"]
            versionsplit = latest_bin.split("-")
            version = versionsplit[1].split("0")[-1] + "." + versionsplit[2] + "." + versionsplit[3]
            break

    print(f"Latest bin is {latest_bin}")
    print(f"Latest {app_name} version is: {version}")
    print(f"Download URL is: {download_url}")

    # Deleting binaries
    for f in glob.glob("*.dmg"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print(f"Binary is present: {latest_bin}")

    control.set_software_version(version)
    control.save_control_to_wapt()

eb2ed5fb18b9dcc63350057275ab14d4f9624a98996c4ce7f6f1299832fa2dd5 : SketchUp-2026-0-428-164.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6c0a2839940fe77e36ee169253863d5ca700fffa5e7f1fd1b8739af076658ec6 : WAPT/control
4f313f8875ddb11f3b9dc63b8b4ec2ae606dcc9361f2491f827198a37eb5f109 : WAPT/icon.png
5192491941b7109b5c38a2b4c2d69f3b89f2a9537c03a70b717e1a7b18e887b6 : luti.json
93daa1d55d20f19ea27aa92ea5c461b9fb12e7d50702924bef77fca28b0257ba : setup.py
46ffa5c0b086bd417f53cd9ee72502e58ceefaf3426f261589121f7eb4731a54 : update_package.py