summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 50368e39a98a799bc28bfa9e1ac472dd92fe1dd3 (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
27
28
29
30
31
32
# Maintainer: Guoyi
pkgname=gffread
pkgver=0.12.7
pkgrel=2
pkgdesc="GFF/GTF utility providing format conversions, region filtering, FASTA sequence extraction and more"
arch=('x86_64')
url="https://github.com/gpertea/gffread"
license=('MIT')
depends=()
makedepends=('make' 'git')
optdepends=()
source=(https://github.com/gpertea/gffread/archive/refs/tags/v${pkgver}.tar.gz)
sha256sums=('6f3417090b3beb74f435bf5d462c87475b3c704a8a0d71821f6c1321c47dbbbe')
prepare(){
  cd $srcdir
  git clone https://github.com/gpertea/gclib.git
}
build(){
  cd $srcdir/gclib
  make
}
build() {
  cd "${pkgname}"-$pkgver
  make release || bash -c "ls ../gclib/"
}

package() {
  cd "${pkgname}"-$pkgver
  install -Dm 755 $pkgname $pkgdir/usr/bin/$pkgname


}