summaryrefslogtreecommitdiff
path: root/extra/glsof/PKGBUILD
blob: 4d855ad7668659bea44a3253fc324f02a697c06c (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
33
34
35
36
37
38
# $Id: PKGBUILD 147275 2012-01-25 16:46:28Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>

pkgname=glsof
pkgver=1.8.0
_fmver=1.8.0
_qver=1.0.0
pkgrel=1
pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof command line utility"
arch=('i686' 'x86_64' 'mips64el')
url="http://glsof.sourceforge.net/"
license=('GPL3')
depends=('sh' 'java-runtime' 'lsof')
source=(http://downloads.sourceforge.net/sourceforge/glsof/filemonitor-${_fmver}.tar.gz)
if [ "$CARCH" = "i686" ]; then
  source=(${source[@]} http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux32.tar.gz \
          glsof-filemonitor glsof-queries)
  sha1sums=('a70c8d3877c13af8bd8e7e319a1709c1b90eedc6'
            'd5a17d66dd02cd78bad5ffdda0b936c7848e4890'
            '197b58f40880995d6442fd42a58fa1f4594fd19d'
            '2797c326904af16a254c3e39b8c529ea14ef37e5')
elif [ "$CARCH" = "x86_64" ]; then
  source=(${source[@]} http://downloads.sourceforge.net/sourceforge/glsof/queries-${_qver}/queries_linux64.tar.gz \
          glsof-filemonitor glsof-queries)
  sha1sums=('a70c8d3877c13af8bd8e7e319a1709c1b90eedc6'
            'c5dd12e9b2860f1c427ed7cd482e898978051d2c'
            '197b58f40880995d6442fd42a58fa1f4594fd19d'
            '2797c326904af16a254c3e39b8c529ea14ef37e5')
fi

package() {
  cd "${srcdir}"
  install -D -m755 glsof-filemonitor "${pkgdir}/usr/bin/glsof-filemonitor"
  install -D -m755 glsof-queries "${pkgdir}/usr/bin/glsof-queries"
  install -D -m644 filemonitor/filemonitor.jar "${pkgdir}/usr/share/java/glsof/filemonitor.jar"
  install -D -m644 queries_linux??/queries.jar "${pkgdir}/usr/share/java/glsof/queries.jar"
  install -D -m644 queries_linux??/queries.pdf "${pkgdir}/usr/share/doc/glsof/queries.pdf"
}