summaryrefslogtreecommitdiff
path: root/homebrew/id3lib
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/id3lib
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/id3lib')
-rw-r--r--homebrew/id3lib/.beer57
-rw-r--r--homebrew/id3lib/.make.sh-auto4
-rw-r--r--homebrew/id3lib/_metadata/description1
-rw-r--r--homebrew/id3lib/_metadata/homepage1
-rw-r--r--homebrew/id3lib/_metadata/name1
-rw-r--r--homebrew/id3lib/_metadata/version1
-rwxr-xr-xhomebrew/id3lib/download.sh1
-rwxr-xr-xhomebrew/id3lib/patches.sh6
8 files changed, 72 insertions, 0 deletions
diff --git a/homebrew/id3lib/.beer b/homebrew/id3lib/.beer
new file mode 100644
index 000000000..07543071a
--- /dev/null
+++ b/homebrew/id3lib/.beer
@@ -0,0 +1,57 @@
+{
+ "name": "Id3lib",
+ "description": "ID3 tag manipulation",
+ "url": "https://downloads.sourceforge.net/project/id3lib/id3lib/3.8.3/id3lib-3.8.3.tar.gz",
+ "mirror": null,
+ "homepage": "https://id3lib.sourceforge.io/",
+ "depends": [
+ {
+ "depend": "autoconf",
+ "build-depend": true
+ },
+ {
+ "depend": "automake",
+ "build-depend": true
+ },
+ {
+ "depend": "libtool",
+ "build-depend": true
+ }
+ ],
+ "resource": [],
+ "conflicts": [],
+ "patches": [
+ {
+ "url": "https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/id3lib-vbr-overflow.patch",
+ "strip": "1"
+ },
+ {
+ "url": "https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/id3lib-main.patch",
+ "strip": "1"
+ },
+ {
+ "url": "https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/no-iomanip.h.patch",
+ "strip": "1"
+ },
+ {
+ "url": "https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/automake.patch",
+ "strip": "1"
+ },
+ {
+ "url": "https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/boolcheck.patch",
+ "strip": "1"
+ },
+ {
+ "url": "https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff",
+ "strip": "1"
+ }
+ ],
+ "install": [
+ "system \"autoreconf\", \"-fvi\"",
+ "system \"./configure\", \"--disable-debug\", \"--disable-dependency-tracking\",",
+ "\"--prefix=#{prefix}\"",
+ "system \"make\", \"install\""
+ ],
+ "version": "3.8.3",
+ "file": "id3lib.rb"
+} \ No newline at end of file
diff --git a/homebrew/id3lib/.make.sh-auto b/homebrew/id3lib/.make.sh-auto
new file mode 100644
index 000000000..62a47a036
--- /dev/null
+++ b/homebrew/id3lib/.make.sh-auto
@@ -0,0 +1,4 @@
+pkg:setup
+autoreconf -fvi
+pkg:configure --disable-dependency-tracking
+make DESTDIR=${PKG_DEST} install
diff --git a/homebrew/id3lib/_metadata/description b/homebrew/id3lib/_metadata/description
new file mode 100644
index 000000000..b5ed33e99
--- /dev/null
+++ b/homebrew/id3lib/_metadata/description
@@ -0,0 +1 @@
+ID3 tag manipulation
diff --git a/homebrew/id3lib/_metadata/homepage b/homebrew/id3lib/_metadata/homepage
new file mode 100644
index 000000000..8fd49f8e4
--- /dev/null
+++ b/homebrew/id3lib/_metadata/homepage
@@ -0,0 +1 @@
+https://id3lib.sourceforge.io/
diff --git a/homebrew/id3lib/_metadata/name b/homebrew/id3lib/_metadata/name
new file mode 100644
index 000000000..74291bcfc
--- /dev/null
+++ b/homebrew/id3lib/_metadata/name
@@ -0,0 +1 @@
+Id3lib
diff --git a/homebrew/id3lib/_metadata/version b/homebrew/id3lib/_metadata/version
new file mode 100644
index 000000000..269aa9c86
--- /dev/null
+++ b/homebrew/id3lib/_metadata/version
@@ -0,0 +1 @@
+3.8.3
diff --git a/homebrew/id3lib/download.sh b/homebrew/id3lib/download.sh
new file mode 100755
index 000000000..fa34d8422
--- /dev/null
+++ b/homebrew/id3lib/download.sh
@@ -0,0 +1 @@
+wget https://downloads.sourceforge.net/project/id3lib/id3lib/3.8.3/id3lib-3.8.3.tar.gz \ No newline at end of file
diff --git a/homebrew/id3lib/patches.sh b/homebrew/id3lib/patches.sh
new file mode 100755
index 000000000..edadd335d
--- /dev/null
+++ b/homebrew/id3lib/patches.sh
@@ -0,0 +1,6 @@
+wget https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/id3lib-vbr-overflow.patch
+wget https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/id3lib-main.patch
+wget https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/no-iomanip.h.patch
+wget https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/automake.patch
+wget https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/boolcheck.patch
+wget https://raw.githubusercontent.com/Homebrew/formula-patches/e223e971/id3lib/patch_id3lib_3.8.3_UTF16_writing_bug.diff