git subrepo clone --branch=master https://aur.archlinux.org/physlock-dexterlb-git.git
subrepo: subdir: "physlock-dexterlb-git" merged: "05ad0d6" upstream: origin: "https://aur.archlinux.org/physlock-dexterlb-git.git" branch: "master" commit: "05ad0d6" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
This commit is contained in:
parent
9ffa545580
commit
32a6ec828e
19
physlock-dexterlb-git/.SRCINFO
Normal file
19
physlock-dexterlb-git/.SRCINFO
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
pkgbase = physlock-dexterlb-git
|
||||||
|
pkgdesc = Lightweight linux console locking tool. A Fork allowing commands before and after lock
|
||||||
|
pkgver = v13.r5.ge4df70c
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://github.com/DexterLB/physlock
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL
|
||||||
|
makedepends = git
|
||||||
|
depends = pam
|
||||||
|
depends = systemd-libs
|
||||||
|
provides = physlock
|
||||||
|
conflicts = physlock
|
||||||
|
source = physlock::git+https://github.com/DexterLB/physlock.git
|
||||||
|
source = physlock.pam
|
||||||
|
sha512sums = SKIP
|
||||||
|
sha512sums = 51f35b2b736d8b601a6ea42c038ab0f498225ce4e392eeb35fdcec4a51a7a492a836de451a28565a27dea694a4a29ac4de7ea2c8852bba63cad58710641557fe
|
||||||
|
|
||||||
|
pkgname = physlock-dexterlb-git
|
||||||
|
|
12
physlock-dexterlb-git/.gitrepo
Normal file
12
physlock-dexterlb-git/.gitrepo
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
; DO NOT EDIT (unless you know what you are doing)
|
||||||
|
;
|
||||||
|
; This subdirectory is a git "subrepo", and this file is maintained by the
|
||||||
|
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
|
||||||
|
;
|
||||||
|
[subrepo]
|
||||||
|
remote = https://aur.archlinux.org/physlock-dexterlb-git.git
|
||||||
|
branch = master
|
||||||
|
commit = 05ad0d613fbc2109bd738d61db02b283a8326a8c
|
||||||
|
parent = 9ffa5455801935c40012a66c353e94a477645b9f
|
||||||
|
method = merge
|
||||||
|
cmdver = 0.4.3
|
35
physlock-dexterlb-git/PKGBUILD
Normal file
35
physlock-dexterlb-git/PKGBUILD
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# Maintainer: Cullen Ross <cullenrss@gmail.com>
|
||||||
|
|
||||||
|
pkgname=physlock-dexterlb-git
|
||||||
|
_pkgname='physlock'
|
||||||
|
pkgver=v13.r5.ge4df70c
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Lightweight linux console locking tool. A Fork allowing commands before and after lock"
|
||||||
|
arch=('x86_64')
|
||||||
|
license=('GPL')
|
||||||
|
url="https://github.com/DexterLB/physlock"
|
||||||
|
depends=('pam' 'systemd-libs')
|
||||||
|
makedepends=('git')
|
||||||
|
provides=('physlock')
|
||||||
|
conflicts=('physlock')
|
||||||
|
source=("${_pkgname}::git+${url}.git"
|
||||||
|
'physlock.pam')
|
||||||
|
sha512sums=('SKIP'
|
||||||
|
'51f35b2b736d8b601a6ea42c038ab0f498225ce4e392eeb35fdcec4a51a7a492a836de451a28565a27dea694a4a29ac4de7ea2c8852bba63cad58710641557fe')
|
||||||
|
|
||||||
|
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() {
|
||||||
|
make PREFIX="/usr" -C "${_pkgname}"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
install -D -m 644 physlock.pam "$pkgdir/etc/pam.d/physlock"
|
||||||
|
make DESTDIR="${pkgdir}" PREFIX="/usr" -C "${_pkgname}" install
|
||||||
|
}
|
5
physlock-dexterlb-git/physlock.pam
Normal file
5
physlock-dexterlb-git/physlock.pam
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#%PAM-1.0
|
||||||
|
auth required pam_unix.so
|
||||||
|
account required pam_unix.so
|
||||||
|
password required pam_unix.so
|
||||||
|
session required pam_unix.so
|
Loading…
Reference in New Issue
Block a user