mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add unbuilt nocodb to updater-nocodb-0.264.4 * Update source_sha256 in nocodb.rb --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com>
23 lines
600 B
Ruby
23 lines
600 B
Ruby
require 'package'
|
|
|
|
class Nocodb < Package
|
|
description 'Open Source Airtable Alternative'
|
|
homepage 'https://nocodb.com/'
|
|
version '0.264.4'
|
|
license 'AGPL-3.0'
|
|
compatibility 'x86_64'
|
|
source_url "https://github.com/nocodb/nocodb/releases/download/#{version}/Noco-linux-x64"
|
|
source_sha256 'd8224675bf8b07428579b9f2b5e270b34279003921604985040d98a8bf9ae356'
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
|
|
def self.install
|
|
FileUtils.install 'Noco-linux-x64', "#{CREW_DEST_PREFIX}/bin/nocodb", mode: 0o755
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'nocodb' to get started.\n"
|
|
end
|
|
end
|