summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7b93cdd2adda1b6d698c37fb8042b11cd5f9a926 (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
# Maintainer: Tim Savannah <kata198@gmail.com>

pkgname='pid-tools'
pkgdesc="Some commandline tools for dealing with pids, information about processes, and their relations"
pkgver=3.0.0
pkgrel=1
arch=('any')
license=('GPLv2')
url="http://github.com/kata198/pid-tools"
makedepends=('gcc' 'make')
source=("https://github.com/kata198/pid-tools/archive/${pkgver}.tar.gz")
sha512sums=("6d3c652f33e1a3fe983cea3506d7ac4390a520ec9a9dd993f803007f429e90ff83265a10d1aaf491c06377df7b868a114521511a6f20bce5832f674d8e0c6c00")

build() {
  cd "$srcdir/${pkgname}-$pkgver"

  make
}

package() {
  cd "${pkgname}-$pkgver"

  # Bug in MAKEFILE, have to end DESTDIR with /usr
  make install DESTDIR="${pkgdir}/usr"
}