mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
Add sfk package
This commit is contained in:
19
packages/sfk.rb
Normal file
19
packages/sfk.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
require "package"
|
||||
|
||||
class Sfk < Package
|
||||
description 'The Swiss File Knife - A Command Line Tools Collection for Windows / Linux / Mac.'
|
||||
homepage 'http://swissfileknife.sourceforge.net/'
|
||||
version "1.8.6"
|
||||
source_url "https://sourceforge.net/projects/swissfileknife/files/1-swissfileknife/1.8.6/sfk-1.8.6.tar.gz"
|
||||
source_sha1 "d45d80d8a452d121ad85ec1d909fb3f85c17ee3f"
|
||||
|
||||
def self.build
|
||||
system "./configure"
|
||||
system "make"
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user