blob: 6829132c547bb781e0f5a9cef8551f8d2ac4158f (
plain) (
tree)
|
|
class RememberingLatest < Formula
desc 'Add memory to dmenu, fzf and similar tools.'
homepage 'https://remembering.euandreh.xyz'
url 'https://git.euandreh.xyz/remembering/snapshot/remembering-f5be62e1ce36a3da8c6cda36196351c29d8e3d32.tar.gz'
sha256 '34a7d0f8b13211982eefa99ae68a83ac8e451d52f04a94918507a798f7004476'
license 'AGPL-3.0-or-later'
def install
system 'make'
system 'make', 'check'
system 'make', 'install', "PREFIX=#{prefix}"
end
test do
system "#{bin}/remembering", '-V'
end
end
|