blob: 8e50b7540b1220307c6ac10ae483172fd6e80342 (
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
|
# 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=3
pkgdesc="lightweight linux console locking tool"
arch=('x86_64')
license=('GPL')
url="https://github.com/muennich/physlock"
depends=('pam')
makedepends=('git')
provides=('physlock')
conflicts=('physlock')
source=("${_pkgname}::git+${url}.git")
sha512sums=('SKIP')
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)"
)
}
build() {
cd "${_pkgname}"
make PREFIX="/usr"
}
package() {
cd "$_pkgname"
make DESTDIR="${pkgdir}" PREFIX="/usr" install
}
|