From 721376bf55f2ee22bcae969a98dafe5bbb05aebc Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Wed, 3 Apr 2024 02:11:48 -0600 Subject: remove everything --- Formula/chemicalite.rb | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Formula/chemicalite.rb (limited to 'Formula/chemicalite.rb') diff --git a/Formula/chemicalite.rb b/Formula/chemicalite.rb deleted file mode 100644 index 6c94a38..0000000 --- a/Formula/chemicalite.rb +++ /dev/null @@ -1,29 +0,0 @@ -class Chemicalite < Formula - desc "SQLite extension for chemoinformatics applications" - homepage "https://chemicalite.readthedocs.io/en/latest/" - url "https://github.com/rvianello/chemicalite/archive/refs/tags/2024.02.1.tar.gz" - sha256 "fa254bb9a9b15b8fb4befefc28ff12225fdf99ddcf3ee0a5bd749be72283c9e7" - license "BSD-3-Clause" - - depends_on "catch2" => [:build, :test] - depends_on "cmake" => :build - depends_on "sqlite" => [:build, :test] - depends_on "python3" => [:test] - depends_on "boost" - depends_on "rdkit" - - def install - system "cmake", "-S", ".", "-B", "build", "-DCHEMICALITE_ENABLE_TESTS=OFF", *std_cmake_args - system "cmake", "--build", "build" - system "cmake", "--install", "build" - end - - test do - system "python3", "-c", "import sqlite3; \ - con = sqlite3.connect('chembldb.sql'); \ - con.enable_load_extension(True); \ - con.load_extension('chemicalite'); \ - con.execute( \ - 'CREATE TABLE chembl(id INTEGER PRIMARY KEY, chembl_id TEXT, molecule MOL)')" - end -end -- cgit v1.2.3