summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0b699db9bccc81aeefe2d9f30c188d00a4f1d8c3 (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
# Maintainer sgerwk <sgerwk at aol dot com>
pkgname=felinks
pkgver=0.13.2
pkgrel=1
pkgdesc="text browser"
license=(GPL2)
arch=('x86_64' 'i686')
depends=()
makedepends=('gcc' 'make')
url="http://github.com/rkd77/felinks"
source=(git+https://github.com/rkd77/felinks#tag=v$pkgver)
sha256sums=('SKIP')

build() {
  cd $startdir/src/$pkgname
  ./autogen.sh
  ./configure
  make || return 1
}

check() {
  cd $startdir/src/$pkgname
  return $(test -x hovacui)
}

package() {
  cd $startdir/src/$pkgname
  make DESTDIR=$startdir/pkg/$pkgname install
}