summaryrefslogtreecommitdiff
path: root/homebrew/stgit
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-20 20:49:46 -0500
committerMCApollo <34170230+MCApollo@users.noreply.github.com>2019-04-23 20:18:47 -0500
commit12335518ab39608d58370c85ff9f5384ad2aa5f7 (patch)
tree352d81f2a2de3f1252af732080ec0fde38c13b4d /homebrew/stgit
parenta2b26ad12d4fa12f0273645caf4be6d0b8b71e7c (diff)
Ported in the homebrew-marauder for a hacky update/import system.
TODO: Maybe add a license & fix up messy code.
Diffstat (limited to 'homebrew/stgit')
-rw-r--r--homebrew/stgit/.beer18
-rw-r--r--homebrew/stgit/.make.sh-auto4
-rw-r--r--homebrew/stgit/_metadata/description1
-rw-r--r--homebrew/stgit/_metadata/homepage1
-rw-r--r--homebrew/stgit/_metadata/name1
-rw-r--r--homebrew/stgit/_metadata/version1
-rwxr-xr-xhomebrew/stgit/download.sh1
7 files changed, 27 insertions, 0 deletions
diff --git a/homebrew/stgit/.beer b/homebrew/stgit/.beer
new file mode 100644
index 000000000..7742be50a
--- /dev/null
+++ b/homebrew/stgit/.beer
@@ -0,0 +1,18 @@
+{
+ "name": "Stgit",
+ "description": "Push/pop utility built on top of Git",
+ "url": "https://github.com/ctmarinas/stgit/archive/v0.19.tar.gz",
+ "mirror": null,
+ "homepage": "https://github.com/ctmarinas/stgit",
+ "depends": [],
+ "resource": [],
+ "conflicts": [],
+ "patches": [],
+ "install": [
+ "ENV[\"PYTHON\"] = \"python\" ",
+ "system \"make\", \"prefix=#{prefix}\", \"all\"",
+ "system \"make\", \"prefix=#{prefix}\", \"install\""
+ ],
+ "version": "0.19",
+ "file": "stgit.rb"
+} \ No newline at end of file
diff --git a/homebrew/stgit/.make.sh-auto b/homebrew/stgit/.make.sh-auto
new file mode 100644
index 000000000..986e5ec8b
--- /dev/null
+++ b/homebrew/stgit/.make.sh-auto
@@ -0,0 +1,4 @@
+pkg:setup
+ENV["PYTHON"] = "python"
+make prefix=${PKG_TAPF} all
+make prefix=${PKG_TAPF} DESTDIR=${PKG_DEST} install
diff --git a/homebrew/stgit/_metadata/description b/homebrew/stgit/_metadata/description
new file mode 100644
index 000000000..ceb64d8e7
--- /dev/null
+++ b/homebrew/stgit/_metadata/description
@@ -0,0 +1 @@
+Push/pop utility built on top of Git
diff --git a/homebrew/stgit/_metadata/homepage b/homebrew/stgit/_metadata/homepage
new file mode 100644
index 000000000..53712bd92
--- /dev/null
+++ b/homebrew/stgit/_metadata/homepage
@@ -0,0 +1 @@
+https://github.com/ctmarinas/stgit
diff --git a/homebrew/stgit/_metadata/name b/homebrew/stgit/_metadata/name
new file mode 100644
index 000000000..09e613937
--- /dev/null
+++ b/homebrew/stgit/_metadata/name
@@ -0,0 +1 @@
+Stgit
diff --git a/homebrew/stgit/_metadata/version b/homebrew/stgit/_metadata/version
new file mode 100644
index 000000000..caa4836d8
--- /dev/null
+++ b/homebrew/stgit/_metadata/version
@@ -0,0 +1 @@
+0.19
diff --git a/homebrew/stgit/download.sh b/homebrew/stgit/download.sh
new file mode 100755
index 000000000..5da918dd1
--- /dev/null
+++ b/homebrew/stgit/download.sh
@@ -0,0 +1 @@
+wget https://github.com/ctmarinas/stgit/archive/v0.19.tar.gz \ No newline at end of file