aboutsummaryrefslogtreecommitdiff
path: root/Formula/fallible.rb
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-01-19 09:29:58 -0300
committerEuAndreh <eu@euandre.org>2022-01-19 09:30:30 -0300
commit7882c1d616f869d6a3cab33dac696032b3f3a3ef (patch)
tree359c71eec9cb02e3db44c663883e9ce5cf0660e4 /Formula/fallible.rb
parentUpdate all package definitions (diff)
downloadpackage-repository-7882c1d616f869d6a3cab33dac696032b3f3a3ef.tar.gz
package-repository-7882c1d616f869d6a3cab33dac696032b3f3a3ef.tar.xz
paku.json: Remove currently stagnant packages
While package-repository and scripts/paku is itself WIP.
Diffstat (limited to '')
-rw-r--r--Formula/fallible.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/Formula/fallible.rb b/Formula/fallible.rb
deleted file mode 100644
index 9140cae..0000000
--- a/Formula/fallible.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class Fallible < Formula
- desc 'Fault injection library for stress-testing failure scenarios'
- homepage 'https://fallible.euandreh.xyz'
- url 'https://euandreh.xyz/fallible.git/snapshot/fallible-0.3.0.tar.gz'
- sha256 '632357979a4dc4b7166b1ec6d15edebff795f95290cbfc225faa7bc0c3fc105a'
- license 'AGPL-3.0-or-later'
-
- depends_on 'valgrind' => :build
-
- def install
- system 'make'
- system 'make', 'check'
- system 'make', 'install', "PREFIX=#{prefix}"
- end
-end