summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a2d8c332c136cc9e937ee335f3c871d87379319d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Sebastian Wilzbach <sebi [at] wilzbach [dot] me>
# Contributor: Cory Giles <mail@corygil.es>

pkgname=bedops
pkgver=2.4.41
pkgrel=2
pkgdesc="Highly scalable genomic feature operations. https://doi.org/10.1093/bioinformatics/bts277"
arch=('x86_64')
url="http://github.com/bedops/bedops/"
license=('GPL')
depends=('glibc' 'python' 'tcsh')
makedepends=('gcc' 'make')
md5sums=('f0eadfce409de35ea804c9df993d5d07')
source=(https://github.com/bedops/bedops/archive/refs/tags/v${pkgver}.tar.gz)

build() {
    cd "$srcdir"/$pkgname-$pkgver
    make
}

package() {
    cd "$srcdir"/$pkgname-$pkgver
    make install
    mkdir -p "$pkgdir"/usr/bin
    cp -r bin/* $pkgdir/usr/bin
}