mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
16 lines
482 B
Ruby
16 lines
482 B
Ruby
require 'package'
|
|
|
|
class Txt2regex < Package
|
|
description 'Regex wizard for the terminal, written in Bash'
|
|
homepage 'http://aurelio.net/projects/txt2regex/'
|
|
version '0.8'
|
|
license 'GPL-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/aureliojargas/txt2regex/archive/v0.8.tar.gz'
|
|
source_sha256 '31a83516db6c88c07a3d5440136d4fe3928090f0d8b59cb127ca611d6bb9dda9'
|
|
|
|
def self.install
|
|
system "install -Dm755 txt2regex.sh #{CREW_DEST_PREFIX}/bin/txt2regex"
|
|
end
|
|
end
|