Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tabixpp: enable linux-aarch64 build #46754

Merged
merged 3 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions recipes/tabixpp/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ source:
patches:
- shared_lib.patch
- pkg-config.patch # [osx]
- url: https://github.com/samtools/htslib/releases/download/1.17/htslib-1.17.tar.bz2
sha256: 763779288c40f07646ec7ad98b96c378c739171d162ad98398868783b721839f
- url: https://github.com/samtools/htslib/releases/download/1.19.1/htslib-1.19.1.tar.bz2
sha256: 222d74d3574fb67b158c6988c980eeaaba8a0656f5e4ffb76b5fa57f035933ec
folder: htslib

build:
number: 1
number: 2
run_exports:
# Observed ABI version increase from 1.1.0 to 1.1.2.
# Hence, we pin to the patch version even.
Expand Down Expand Up @@ -53,3 +53,5 @@ extra:
- biotools:tabixpp
recipe-maintainers:
- jpuritz
additional-platforms:
- linux-aarch64
5 changes: 3 additions & 2 deletions recipes/tabixpp/shared_lib.patch
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ index f2ba44e..7718d76 100644
DFLAGS = -D_FILE_OFFSET_BITS=64 -D_USE_KNETFILE
BIN = tabix++
-LIB = libtabix.a
+LIB = libtabixpp.a
SOVERSION = 1
-SOVERSION = 1
-SLIB = libtabix.so.$(SOVERSION)
+LIB = libtabixpp.a
+SOVERSION = 0
+SLIB = libtabixpp.so.$(SOVERSION)
OBJS = tabix.o
SUBDIRS = .
Expand Down