Skip to content

Commit

Permalink
fix identation in formula
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBrest committed Mar 23, 2024
1 parent 46ae407 commit b027ca3
Showing 1 changed file with 41 additions and 41 deletions.
82 changes: 41 additions & 41 deletions Formula/libinotify-kqueue.rb
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
class LibinotifyKqueue < Formula
desc "BSD port of Linux's inotify"
homepage "https://github.com/libinotify-kqueue/libinotify-kqueue"
url "https://github.com/libinotify-kqueue/libinotify-kqueue.git",
tag: "20211018",
revision: "ea7835fcafc3cee2a0d6c0e3c8034962c48f6afe"
license "MIT"
head "https://github.com/libinotify-kqueue/libinotify-kqueue.git",
branch: "master"

depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "gcc" => :build
depends_on "libtool" => :build

def install
# Autoconf
system "autoreconf", "-fiv"
# Configure
system "./configure"
# Build
system "make"
# Copy
system "make", "install", "DESTDIR=#{buildpath}"
# Move
lib.install Dir["#{buildpath}/usr/local/lib/*"]
include.install Dir["#{buildpath}/usr/local/include/*"]
man.install Dir["#{buildpath}/usr/local/share/man/*"]
end

test do
# Check if the library is installed
(testpath/"test.cpp").write <<~EOS
#include <sys/inotify.h>
int main() {
inotify_init();
return 0;
}
EOS
system ENV.cc, "test.cpp", "-L#{lib}", "-linotify", "-o", "test"
system "./test"
end
desc "BSD port of Linux's inotify"
homepage "https://github.com/libinotify-kqueue/libinotify-kqueue"
url "https://github.com/libinotify-kqueue/libinotify-kqueue.git",
tag: "20211018",
revision: "ea7835fcafc3cee2a0d6c0e3c8034962c48f6afe"
license "MIT"
head "https://github.com/libinotify-kqueue/libinotify-kqueue.git",
branch: "master"

depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "gcc" => :build
depends_on "libtool" => :build

def install
# Autoconf
system "autoreconf", "-fiv"
# Configure
system "./configure"
# Build
system "make"
# Copy
system "make", "install", "DESTDIR=#{buildpath}"
# Move
lib.install Dir["#{buildpath}/usr/local/lib/*"]
include.install Dir["#{buildpath}/usr/local/include/*"]
man.install Dir["#{buildpath}/usr/local/share/man/*"]
end

test do
# Check if the library is installed
(testpath/"test.cpp").write <<~EOS
#include <sys/inotify.h>
int main() {
inotify_init();
return 0;
}
EOS
system ENV.cc, "test.cpp", "-L#{lib}", "-linotify", "-o", "test"
system "./test"
end
end

0 comments on commit b027ca3

Please sign in to comment.