-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
htslib.gemspec
28 lines (22 loc) · 902 Bytes
/
htslib.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
require_relative "lib/hts/version"
Gem::Specification.new do |spec|
spec.name = "htslib"
spec.version = HTS::VERSION
spec.authors = ["kojix2"]
spec.email = ["[email protected]"]
spec.summary = "HTSlib bindings for Ruby"
spec.homepage = "https://github.com/kojix2/ruby-htslib"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
# * If the shared library exists in the vendor directory,
# it will be included in the package.
# * Official releases uploaded to the RubyGem server
# will not include the shared library.
spec.files = Dir["*.{md,txt}", "{lib}/**/*", "vendor/*.{so,dylib,dll}"]
spec.require_path = "lib"
spec.add_dependency "ffi"
spec.add_dependency "ffi-bitfield"
spec.add_dependency "pkg-config"
spec.metadata["msys2_mingw_dependencies"] = "htslib"
end