diff options
Diffstat (limited to 'homebrew/gitftp')
-rw-r--r-- | homebrew/gitftp/.beer | 44 | ||||
-rw-r--r-- | homebrew/gitftp/.make.sh-auto | 4 | ||||
-rw-r--r-- | homebrew/gitftp/_metadata/description | 1 | ||||
-rw-r--r-- | homebrew/gitftp/_metadata/homepage | 1 | ||||
-rw-r--r-- | homebrew/gitftp/_metadata/name | 1 | ||||
-rw-r--r-- | homebrew/gitftp/_metadata/version | 1 | ||||
-rwxr-xr-x | homebrew/gitftp/download.sh | 1 |
7 files changed, 53 insertions, 0 deletions
diff --git a/homebrew/gitftp/.beer b/homebrew/gitftp/.beer new file mode 100644 index 000000000..ebb9128f8 --- /dev/null +++ b/homebrew/gitftp/.beer @@ -0,0 +1,44 @@ +{ + "name": "GitFtp", + "description": "Git-powered FTP client", + "url": "https://github.com/git-ftp/git-ftp/archive/1.5.1.tar.gz", + "mirror": null, + "homepage": "https://git-ftp.github.io/", + "depends": [ + { + "depend": "pandoc", + "build-depend": true + }, + { + "depend": "libssh2", + "build-depend": false + } + ], + "resource": [ + { + "name": "curl", + "url": "https://curl.haxx.se/download/curl-7.62.0.tar.bz2" + } + ], + "conflicts": [], + "patches": [], + "install": [ + "resource(\"curl\").stage do", + "system \"./configure\", \"--disable-debug\",", + "\"--disable-dependency-tracking\",", + "\"--disable-silent-rules\",", + "\"--prefix=#{libexec}\",", + "\"--disable-ares\",", + "\"--with-darwinssl\",", + "\"--with-libssh2\",", + "\"--without-brotli\",", + "\"--without-ca-bundle\",", + "\"--without-ca-path\",", + "\"--without-gssapi\",", + "\"--without-libmetalink\",", + "\"--without-librtmp\"", + "system \"make\", \"install\"" + ], + "version": "1.5.1", + "file": "git-ftp.rb" +}
\ No newline at end of file diff --git a/homebrew/gitftp/.make.sh-auto b/homebrew/gitftp/.make.sh-auto new file mode 100644 index 000000000..406fb965b --- /dev/null +++ b/homebrew/gitftp/.make.sh-auto @@ -0,0 +1,4 @@ +pkg:setup +resource("curl").stage do +pkg:configure --disable-dependency-tracking --disable-silent-rules --disable-ares --with-darwinssl --with-libssh2 --without-brotli --without-ca-bundle --without-ca-path --without-gssapi --without-libmetalink --without-librtmp +make DESTDIR=${PKG_DEST} install diff --git a/homebrew/gitftp/_metadata/description b/homebrew/gitftp/_metadata/description new file mode 100644 index 000000000..42538f712 --- /dev/null +++ b/homebrew/gitftp/_metadata/description @@ -0,0 +1 @@ +Git-powered FTP client diff --git a/homebrew/gitftp/_metadata/homepage b/homebrew/gitftp/_metadata/homepage new file mode 100644 index 000000000..b02b25f34 --- /dev/null +++ b/homebrew/gitftp/_metadata/homepage @@ -0,0 +1 @@ +https://git-ftp.github.io/ diff --git a/homebrew/gitftp/_metadata/name b/homebrew/gitftp/_metadata/name new file mode 100644 index 000000000..ca157d67c --- /dev/null +++ b/homebrew/gitftp/_metadata/name @@ -0,0 +1 @@ +GitFtp diff --git a/homebrew/gitftp/_metadata/version b/homebrew/gitftp/_metadata/version new file mode 100644 index 000000000..26ca59460 --- /dev/null +++ b/homebrew/gitftp/_metadata/version @@ -0,0 +1 @@ +1.5.1 diff --git a/homebrew/gitftp/download.sh b/homebrew/gitftp/download.sh new file mode 100755 index 000000000..3bf485d4e --- /dev/null +++ b/homebrew/gitftp/download.sh @@ -0,0 +1 @@ +wget https://github.com/git-ftp/git-ftp/archive/1.5.1.tar.gz
\ No newline at end of file |