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

Update admixtools to 8.0.2 #53128

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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/admixtools/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash

# clear out pre-built objects and executables
cd src
make CC=${CC} clobber
make CC="${CC}" clobber -j"${CPU_COUNT}"

make CC=${CC} CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" all
make CC="${CC}" CFLAGS="$CFLAGS -O3 -fPIE -I${PREFIX}/include" LDFLAGS="${LDFLAGS} -L${PREFIX}/lib" all -j"${CPU_COUNT}"

make install TOP=$PREFIX/bin
make install TOP="${PREFIX}/bin"
11 changes: 7 additions & 4 deletions recipes/admixtools/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
package:
name: admixtools
version: '7.0.2'
version: '8.0.2'

source:
url: https://github.com/DReichLab/AdmixTools/archive/refs/tags/v7.0.2.tar.gz
sha256: d1dc1963e01017f40e05e28009008e14388a14a3facc75cff46653da585bd91e
url: https://github.com/DReichLab/AdmixTools/archive/refs/tags/v8.0.2.tar.gz
sha256: fea3eaabc5c47aa85dbc4346b6be0c377249064ccba087c246cbc7bec4b18777
patches:
- patch
- makefile-compiler.patch

build:
number: 5
number: 0
run_exports:
- {{ pin_subpackage('admixtools', max_pin="x") }}

requirements:
build:
Expand All @@ -27,6 +29,7 @@ about:
home: https://github.com/DReichLab/AdmixTools
license: Free for Academic Use
summary: 'ADMIXTOOLS (Patterson et al. 2012) is a software package that supports formal tests of whether admixture occurred, and makes it possible to infer admixture proportions and dates.'
dev_url: https://github.com/DReichLab/AdmixTools

test:
commands:
Expand Down
Loading