File tree Expand file tree Collapse file tree 2 files changed +32
-32
lines changed Expand file tree Collapse file tree 2 files changed +32
-32
lines changed Original file line number Diff line number Diff line change @@ -91,25 +91,25 @@ jobs:
91
91
if [ ! -f "$FORMULA" ]; then
92
92
echo "Creating new Homebrew formula for ra2mp3..."
93
93
mkdir -p Formula
94
- cat > "$FORMULA" << 'EOF '
95
- class Ra2mp3 < Formula
96
- desc "Convert RealAudio (.ra/.ram/.rm) files to MP3 format using FFmpeg"
97
- homepage "https://github.com/wiiiimm/ra2mp3"
98
- url "https://github.com/wiiiimm/ra2mp3/archive/v0.0.0.tar.gz"
99
- sha256 "placeholder"
100
- license "MIT"
94
+ cat > "$FORMULA" << 'FORMULA_END '
95
+ class Ra2mp3 < Formula
96
+ desc "Convert RealAudio (.ra/.ram/.rm) files to MP3 format using FFmpeg"
97
+ homepage "https://github.com/wiiiimm/ra2mp3"
98
+ url "https://github.com/wiiiimm/ra2mp3/archive/v0.0.0.tar.gz"
99
+ sha256 "placeholder"
100
+ license "MIT"
101
101
102
- depends_on "ffmpeg"
102
+ depends_on "ffmpeg"
103
103
104
- def install
105
- bin.install "ra2mp3"
106
- end
104
+ def install
105
+ bin.install "ra2mp3"
106
+ end
107
107
108
- test do
109
- system "#{bin}/ra2mp3", "--version"
110
- end
111
- end
112
- EOF
108
+ test do
109
+ system "#{bin}/ra2mp3", "--version"
110
+ end
111
+ end
112
+ FORMULA_END
113
113
fi
114
114
115
115
# Calculate SHA256 for the release tarball
Original file line number Diff line number Diff line change @@ -195,25 +195,25 @@ jobs:
195
195
FORMULA="Formula/ra2mp3.rb"
196
196
if [ ! -f "$FORMULA" ]; then
197
197
mkdir -p Formula
198
- cat > "$FORMULA" << 'EOF '
199
- class Ra2mp3 < Formula
200
- desc "Convert RealAudio (.ra/.ram/.rm) files to MP3 format using FFmpeg"
201
- homepage "https://github.com/wiiiimm/ra2mp3"
202
- url "https://github.com/wiiiimm/ra2mp3/archive/v0.0.0.tar.gz"
203
- sha256 "placeholder"
204
- license "MIT"
198
+ cat > "$FORMULA" << 'FORMULA_END '
199
+ class Ra2mp3 < Formula
200
+ desc "Convert RealAudio (.ra/.ram/.rm) files to MP3 format using FFmpeg"
201
+ homepage "https://github.com/wiiiimm/ra2mp3"
202
+ url "https://github.com/wiiiimm/ra2mp3/archive/v0.0.0.tar.gz"
203
+ sha256 "placeholder"
204
+ license "MIT"
205
205
206
- depends_on "ffmpeg"
206
+ depends_on "ffmpeg"
207
207
208
- def install
209
- bin.install "ra2mp3"
210
- end
208
+ def install
209
+ bin.install "ra2mp3"
210
+ end
211
211
212
- test do
213
- system "#{bin}/ra2mp3", "--version"
214
- end
215
- end
216
- EOF
212
+ test do
213
+ system "#{bin}/ra2mp3", "--version"
214
+ end
215
+ end
216
+ FORMULA_END
217
217
fi
218
218
219
219
# Calculate SHA256 for the release tarball
You can’t perform that action at this time.
0 commit comments