diff --git a/BioArchLinux/picard-tools/PKGBUILD b/BioArchLinux/picard-tools/PKGBUILD new file mode 100644 index 0000000000..5e351f9cfc --- /dev/null +++ b/BioArchLinux/picard-tools/PKGBUILD @@ -0,0 +1,16 @@ +# Maintainer: Grey Christoforo + +pkgname=picard-tools +pkgver=2.27.1 +pkgrel=1 +pkgdesc='set of tools for working with next generation sequencing data in the BAM format' +arch=(x86_64) +url="https://github.com/broadinstitute/picard" +license=(MIT) +depends=('java-runtime=8') +source=(https://github.com/broadinstitute/picard/releases/download/${pkgver}/picard.jar) +sha256sums=('87e94cebeeeaaa19dd2a5ab2d76b9ac51b007fbe5926294f9bb83b6811513152') + +package() { + install -Dm 755 picard.jar $pkgdir/usr/share/$pkgname/picard.jar +} diff --git a/BioArchLinux/picard-tools/lilac.py b/BioArchLinux/picard-tools/lilac.py new file mode 100644 index 0000000000..95588104e1 --- /dev/null +++ b/BioArchLinux/picard-tools/lilac.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 +from lilaclib import * + +def pre_build(): + update_pkgver_and_pkgrel(_G.newver.lstrip('v')) + run_cmd(['updpkgsums']) + +def post_build(): + git_add_files('PKGBUILD') + git_commit() + update_aur_repo() diff --git a/BioArchLinux/picard-tools/lilac.yaml b/BioArchLinux/picard-tools/lilac.yaml new file mode 100644 index 0000000000..1ca341e319 --- /dev/null +++ b/BioArchLinux/picard-tools/lilac.yaml @@ -0,0 +1,8 @@ +build_prefix: extra-x86_64 +maintainers: + - github: starsareintherose + email: starsareintherose@outlook.com +update_on: + - source: github + github: broadinstitute/picard + use_max_tag: true