summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e18f75d3e06e3a73fdf613445f6b28eb05442716 (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
# Maintainer: Hans-Nikolai Viessmann <hans AT viess.mn>
# Contributor: Gordon Schulz <gordon.schulz@gmail.com>
# Contributor: Gavin Lloyd <gavinhungry@gmail.com>

pkgname=physlock-git
_pkgname='physlock'
pkgver=v11.r35.g15744f5
pkgrel=2
pkgdesc="lightweight linux console locking tool"
arch=('x86_64')
license=('GPL')
url="https://github.com/muennich/physlock"
depends=('pam')
makedepends=('git')
conflicts=('physlock')
source=("${_pkgname}::git+${url}.git")
sha512sums=('SKIP')

build() {
  cd "${_pkgname}"
  make PREFIX="/usr"
}

pkgver() {
  cd "$_pkgname"
  ( set -o pipefail
    git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

package() {
  cd "$_pkgname"
  make DESTDIR="${pkgdir}" PREFIX="/usr" install
}