Files
chromebrew/packages/nocodb.rb
chromebrew-actions[bot] 6e3752ae40 updater-nocodb-0.264.4 — nocodb → 0.264.4 (#12516)
* 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>
2025-08-17 02:22:14 +00:00

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