This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Nikto < Formula | |
homepage 'http://cirt.net/nikto2' | |
url 'https://github.com/sullo/nikto.git', :revision => '8bb017d76e592793da3c06cdbb8d31bfdffdf2eb' | |
version '2.1.5' | |
# version 2.1.6 is still under developing | |
def install | |
# adjust default paths in perl script |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(void) { | |
char a[] = "ABCD"; | |
char b[] = "BCDE"; | |
char c[] = "CDEF"; | |
puts(a); | |
puts(b); | |
puts(c); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# encoding: utf-8 | |
import os | |
import sys | |
#import chardet | |
dir = sys.argv[1] | |
#def convert(source_file): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "formula" | |
class Nbtscan < Formula | |
homepage "http://www.inetcat.net/software/nbtscan.html" | |
url "http://distcache.freebsd.org/ports-distfiles/nbtscan-1.5.1.tar.gz" | |
mirror "http://www.sourcefiles.org/Networking/Tools/Miscellanenous/nbtscan-1.5.1.tar.gz" | |
sha1 "4041d8f6b592fa310b8d3c79c56a2d3263dba82f" | |
patch :p1 do | |
url "https://gist.githubusercontent.com/congee/76693bd4b61b862b2333/raw/341b46d867120dc9b3e89a23b49f17e82be39d58/debian-patches-04_fix_compiler_warnings.diff" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "formula" | |
class TsunamiUdp < Formula | |
homepage "http://tsunami-udp.sourceforge.net/" | |
url "http://superb-dca2.dl.sourceforge.net/project/tsunami-udp/tsunami-udp/tsunami-v1.1-cvsbuild42/tsunami-v1.1-cvsbuild42.tar.gz" | |
sha1 "e16ae011ad2e953e493c916da4b51a4cdc3425e2" | |
depends_on "autoconf" => :build | |
depends_on "automake" => :build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Libsvm < Formula | |
homepage 'http://www.csie.ntu.edu.tw/~cjlin/libsvm/' | |
url 'http://www.csie.ntu.edu.tw/~cjlin/libsvm/oldfiles/libsvm-3.18.tar.gz' | |
sha1 '20bd3e2d21d79c3714007043475b92dfeed29135' | |
bottle do | |
cellar :any | |
revision 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Pycdc < Formula | |
homepage "https://github.com/zrax/pycdc" | |
url "https://github.com/zrax/pycdc.git" | |
version "HEAD" | |
depends_on "cmake" => :build | |
def install | |
system "cmake", "." | |
system "make" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Nyancat < Formula | |
homepage "http://nyancat.dakko.us/" | |
version "HEAD" | |
url "https://github.com/klange/nyancat.git" | |
def install | |
system "make" | |
bin.install "src/nyancat" | |
man1.install "nyancat.1" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/unix/Makefile 2015-02-12 22:17:02.000000000 +0800 | |
+++ b/unix/Makefile 2015-02-12 22:17:16.000000000 +0800 | |
@@ -872,7 +872,7 @@ | |
# Macintosh MacOS X (Unix-compatible enviroment), using standard compiler | |
macosx: unix_make | |
- $(MAKE) unzips CFLAGS="-O3 -Wall -DBSD" LF2="" | |
+ $(MAKE) unzips CFLAGS="-O3 -Wall -DBSD" LF2="-liconv" | |
$(STRIP) $(UNZIPS) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Unzip < Formula | |
homepage 'http://www.info-zip.org/pub/infozip/UnZip.html' | |
url 'https://downloads.sourceforge.net/project/infozip/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip60.tar.gz' | |
version '6.0' | |
sha1 'abf7de8a4018a983590ed6f5cbd990d4740f8a22' | |
keg_only :provided_by_osx |
OlderNewer