Created
July 13, 2022 03:05
-
-
Save sukanka/96f27a124c7d988b2d394954d3898170 to your computer and use it in GitHub Desktop.
libmaus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Clint Valentine <valentine.clint@gmail.com> | |
| pkgname=libmaus | |
| pkgver=2.0.810 | |
| pkgrel=1 | |
| _release=20220216151520 | |
| pkgdesc="Bioinformatics data structures and algorithms in C++" | |
| arch=('x86_64') | |
| url=https://gitlab.com/german.tischler/libmaus2 | |
| license=('GPL') | |
| source=(${pkgname}-${pkgver}.tar.gz::https://gitlab.com/german.tischler/libmaus2/-/archive/${pkgver}-release-${_release}/libmaus2-${pkgver}-release-${_release}.tar.gz) | |
| sha256sums=('6639289aba6bbece3057ab7d1782a1b94b80a9ae22fc3d136a78ba8f7b9edaee') | |
| build() { | |
| cd "${srcdir}"/libmaus2-"${pkgver}"-release-"${_release}" | |
| ./configure --prefix=/usr --libexecdir=/usr/lib/${pkgname}2 \ | |
| --program-prefix="" | |
| make | |
| } | |
| check() { | |
| cd "${srcdir}/libmaus2-${pkgver}-release-${_release}" | |
| make test | |
| } | |
| package() { | |
| cd "${srcdir}"/libmaus2-"${pkgver}"-release-"${_release}" | |
| make install DESTDIR=${pkgdir} | |
| install -Dm644 AUTHORS "${pkgdir}"/usr/share/licenses/"${pkgname}"2/AUTHORS | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment