aezarebski / beasts-castle

This repository contains some helpful scripts for working with BEAST2.
GNU General Public License v3.0
0 stars 0 forks source link

add fetcher for new beast version #5

Closed aezarebski closed 1 year ago

aezarebski commented 1 year ago

work out how to add this helper target in a nice way!

    <target name="get-beast2.7.1">
      <mkdir dir="lib" />
      <get src="https://github.com/CompEvol/beast2/releases/download/v2.7.1/BEAST.v2.7.1.Linux.x86.tgz" dest="lib/BEAST.v2.7.1.Linux.x86.tgz" verbose="on" />
      <untar src="lib/BEAST.v2.7.1.Linux.x86.tgz" dest="lib/" compression="gzip" />
      <chmod file="lib/beast/bin/beast" perm="750"/>
      <chmod file="lib/beast/bin/beauti" perm="750"/>
      <chmod file="lib/beast/jre/bin/java" perm="750"/>
    </target>