mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
23 lines
620 B
Ruby
23 lines
620 B
Ruby
require 'package'
|
|
|
|
class Zola < Package
|
|
description 'A fast static site generator'
|
|
homepage 'https://www.getzola.org/'
|
|
version '0.21.0'
|
|
license 'MIT'
|
|
compatibility 'x86_64'
|
|
min_glibc '2.29'
|
|
source_url "https://github.com/getzola/zola/releases/download/v#{version}/zola-v#{version}-x86_64-unknown-linux-gnu.tar.gz"
|
|
source_sha256 '5c37a8f706567d6cad3f0dbc0eaebe3b9591cc301bd67089e5ddc0d0401732d6'
|
|
|
|
no_compile_needed
|
|
|
|
def self.install
|
|
FileUtils.install 'zola', "#{CREW_DEST_PREFIX}/bin/zola", mode: 0o755
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'zola' to get started.\n"
|
|
end
|
|
end
|