summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 32117b8b7e86427f4bd662b393581e0520a3ce50 (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
# Maintainer: Steffen Weber <-boenki-gmx-de->

pkgname=fifth
pkgver=0.4
pkgrel=1
pkgdesc="Browser that carries the best features from Opera"
arch=('i686' 'x86_64')
url="http://fifth-browser.sourceforge.net"
license=('GPL3')
depends=('webkitfltk' 'fltk' 'sqlite' 'liburlmatch' 'physfs' 'libxslt' 'curl' 'harfbuzz-icu' 'libjpeg-turbo' 'cairo')
install=$pkgname.install
source=($pkgname-$pkgver.tar.gz::https://github.com/clbr/$pkgname/archive/v$pkgver.tar.gz)
md5sums=('da927c1be0dc1b895b93afb178ee46f2')

build() {
  cd "$pkgname-$pkgver"
  autoreconf -i
  ./configure
  make
}

check() {
  cd "$pkgname-$pkgver"
  make check
}

package() {
  cd "$pkgname-$pkgver"
  make DESTDIR=$pkgdir install
}