mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
ad bedops
This commit is contained in:
parent
33ec79f1aa
commit
aaf0dfc443
3 changed files with 43 additions and 0 deletions
25
BioArchLinux/bedops/PKGBUILD
Normal file
25
BioArchLinux/bedops/PKGBUILD
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: Sebastian Wilzbach <sebi [at] wilzbach [dot] me>
|
||||
# Contributor: Cory Giles <mail@corygil.es>
|
||||
|
||||
pkgname=bedops
|
||||
pkgver=2.4.40
|
||||
pkgrel=1
|
||||
pkgdesc="Highly scalable genomic feature operations."
|
||||
arch=('x86_64')
|
||||
url="http://github.com/bedops/bedops/"
|
||||
license=('GPL')
|
||||
depends=('glibc' 'python' 'tcsh')
|
||||
makedepends=('gcc' 'make')
|
||||
md5sums=('84c756bc92a023863ab564b96ba11067')
|
||||
source=(https://github.com/bedops/bedops/archive/refs/tags/v${pkgver}.tar.gz)
|
||||
|
||||
build() {
|
||||
cd "$srcdir"/$pkgname-$pkgver
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir"/$pkgname-$pkgver
|
||||
install -dm755 "$pkgdir"/usr/bin
|
||||
cp bin/* $pkgdir/usr/bin
|
||||
}
|
10
BioArchLinux/bedops/lilac.py
Normal file
10
BioArchLinux/bedops/lilac.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/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()
|
8
BioArchLinux/bedops/lilac.yaml
Normal file
8
BioArchLinux/bedops/lilac.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: starsareintherose
|
||||
email: starsareintherose@outlook.com
|
||||
update_on:
|
||||
- source: github
|
||||
github: bedops/bedops
|
||||
use_latest_release: true
|
Loading…
Add table
Reference in a new issue