Package Details: flexbar 3.5.0-1

Git Clone URL: https://aur.archlinux.org/flexbar.git (read-only, click to copy)
Package Base: flexbar
Description: flexible barcode and adapter removal for sequencing platforms
Upstream URL: https://github.com/seqan/flexbar/
Keywords: barcode
Licenses: GPL3
Submitter: decryptedepsilon
Maintainer: kleintux (sauliusl)
Last Packager: kleintux
Votes: 1
Popularity: 0.000000
First Submitted: 2014-04-04 11:46 (UTC)
Last Updated: 2021-09-17 10:33 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

sauliusl commented on 2020-10-20 10:28 (UTC)

PKGBUILD for 3.5.0

# Maintainer: Decrypted Epsilon <decrypted.epsilon (at) gmail (dot) com>

pkgname=flexbar
pkgver=3.5.0
pkgrel=1
pkgdesc="flexible barcode and adapter removal for sequencing platforms"
arch=("any")
url="https://github.com/seqan/flexbar/"
license=('GPL3')
depends=('seqan' 'cmake')
source=("https://github.com/seqan/flexbar/archive/v${pkgver}.tar.gz")
md5sums=('0e07bf4afebfd731c4718b401383224a')

build() {
        cd ${pkgname}-${pkgver}
        cmake src
        make
}

package() {
        install -d ${pkgdir}/usr/bin
        install -Dm755 ${srcdir}/${pkgname}-${pkgver}/flexbar ${pkgdir}/usr/bin
}