summaryrefslogtreecommitdiff
path: root/homebrew/yash
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/yash
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/yash')
-rw-r--r--homebrew/yash/.beer33
-rw-r--r--homebrew/yash/.make.sh-auto3
-rw-r--r--homebrew/yash/_metadata/description1
-rw-r--r--homebrew/yash/_metadata/homepage1
-rw-r--r--homebrew/yash/_metadata/name1
-rw-r--r--homebrew/yash/_metadata/version1
-rwxr-xr-xhomebrew/yash/download.sh1
7 files changed, 41 insertions, 0 deletions
diff --git a/homebrew/yash/.beer b/homebrew/yash/.beer
new file mode 100644
index 000000000..d7eb9da10
--- /dev/null
+++ b/homebrew/yash/.beer
@@ -0,0 +1,33 @@
+{
+ "name": "Yash",
+ "description": "Yet another shell: a POSIX-compliant command-line shell",
+ "url": "https://dotsrc.dl.osdn.net/osdn/yash/69353/yash-2.47.tar.xz",
+ "mirror": null,
+ "homepage": "https://yash.osdn.jp/",
+ "depends": [
+ {
+ "depend": "gettext",
+ "build-depend": false
+ }
+ ],
+ "resource": [],
+ "conflicts": [],
+ "patches": [],
+ "install": [
+ "system \"sh\", \"./configure\",",
+ "\"--prefix=#{prefix}\",",
+ "\"--enable-array\",",
+ "\"--enable-dirstack\",",
+ "\"--enable-help\",",
+ "\"--enable-history\",",
+ "\"--enable-lineedit\",",
+ "\"--enable-nls\",",
+ "\"--enable-printf\",",
+ "\"--enable-socket\",",
+ "\"--enable-test\",",
+ "\"--enable-ulimit\"",
+ "system \"make\", \"install\""
+ ],
+ "version": "2.47",
+ "file": "yash.rb"
+} \ No newline at end of file
diff --git a/homebrew/yash/.make.sh-auto b/homebrew/yash/.make.sh-auto
new file mode 100644
index 000000000..2f98e7a74
--- /dev/null
+++ b/homebrew/yash/.make.sh-auto
@@ -0,0 +1,3 @@
+pkg:setup
+sh ./configure --prefix=${PKG_TAPF} --enable-array --enable-dirstack --enable-help --enable-history --enable-lineedit --enable-nls --enable-printf --enable-socket --enable-test --enable-ulimit
+make DESTDIR=${PKG_DEST} install
diff --git a/homebrew/yash/_metadata/description b/homebrew/yash/_metadata/description
new file mode 100644
index 000000000..99d4bb6c5
--- /dev/null
+++ b/homebrew/yash/_metadata/description
@@ -0,0 +1 @@
+Yet another shell: a POSIX-compliant command-line shell
diff --git a/homebrew/yash/_metadata/homepage b/homebrew/yash/_metadata/homepage
new file mode 100644
index 000000000..d46e28f38
--- /dev/null
+++ b/homebrew/yash/_metadata/homepage
@@ -0,0 +1 @@
+https://yash.osdn.jp/
diff --git a/homebrew/yash/_metadata/name b/homebrew/yash/_metadata/name
new file mode 100644
index 000000000..7c71668a5
--- /dev/null
+++ b/homebrew/yash/_metadata/name
@@ -0,0 +1 @@
+Yash
diff --git a/homebrew/yash/_metadata/version b/homebrew/yash/_metadata/version
new file mode 100644
index 000000000..5d8213c95
--- /dev/null
+++ b/homebrew/yash/_metadata/version
@@ -0,0 +1 @@
+2.47
diff --git a/homebrew/yash/download.sh b/homebrew/yash/download.sh
new file mode 100755
index 000000000..e9c0ffda3
--- /dev/null
+++ b/homebrew/yash/download.sh
@@ -0,0 +1 @@
+wget https://dotsrc.dl.osdn.net/osdn/yash/69353/yash-2.47.tar.xz \ No newline at end of file