mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
fastuniq: init
This commit is contained in:
parent
61cc099471
commit
38ceeff7cd
2 changed files with 40 additions and 0 deletions
27
BioArchLinux/fastuniq/PKGBUILD
Normal file
27
BioArchLinux/fastuniq/PKGBUILD
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net>
|
||||
pkgname=fastuniq
|
||||
_pkgname=FastUniq
|
||||
pkgver=1.1
|
||||
pkgrel=0
|
||||
pkgdesc="ultrafast de novo tool for removal of duplicates in paired
|
||||
short DNA sequence reads in FASTQ format \
|
||||
https://doi.org/10.1371/journal.pone.0052249"
|
||||
arch=('x86_64')
|
||||
url="https://sourceforge.net/projects/fastuniq/"
|
||||
license=('LicenseRef-unknown')
|
||||
depends=('glibc')
|
||||
makedepends=('make')
|
||||
source=($pkgname-$pkgver.tar.gz::https://sourceforge.net/projects/fastuniq/files/FastUniq-${pkgver}.tar.gz/download)
|
||||
sha256sums=('9ebf251566d097226393fb5aa9db30a827e60c7a4bd9f6e06022b4af4cee0eae')
|
||||
|
||||
build() {
|
||||
cd $srcdir/$_pkgname/source
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/$_pkgname
|
||||
install -Dm 644 README.txt ${pkgdir}/usr/share/doc/${pkgname}/README.txt
|
||||
cd $srcdir/$_pkgname/source
|
||||
install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
|
||||
}
|
13
BioArchLinux/fastuniq/lilac.yaml
Normal file
13
BioArchLinux/fastuniq/lilac.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
build_prefix: extra-x86_64
|
||||
pre_build_script: |
|
||||
update_pkgver_and_pkgrel(_G.newver)
|
||||
post_build_script: |
|
||||
git_pkgbuild_commit()
|
||||
update_aur_repo()
|
||||
maintainers:
|
||||
- github: starsareintherose
|
||||
email: kuoi@bioarchlinux.org
|
||||
update_on:
|
||||
- regex: FastUniq-(\d+.\d+).tar.gz
|
||||
source: regex
|
||||
url: https://sourceforge.net/projects/fastuniq/files/
|
Loading…
Add table
Reference in a new issue