blob: e671ad19d297ba3b8b70e31009be0e52e5b95d54 (
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
|
# Maintainer: Victor Tran <vicr12345 at gmail dot com>
pkgname=tscheckpass
pkgver=1.0
pkgrel=0
pkgdesc="User Password Checking for tsscreenlock"
arch=("x86_64")
url="https://github.com/vicr123/tscheckpass"
license=('GPL2')
depends=()
makedepends=('qtchooser' 'git')
source=("$pkgname-$pkgver"::'git+https://github.com/vicr123/tscheckpass#branch=master')
md5sums=('SKIP')
build() {
cd "$pkgname-$pkgver"
qmake
make
}
package() {
mkdir -p "$pkgdir/usr/bin"
cp "$pkgname-$pkgver/tscheckpass" "$pkgdir/usr/bin"
chmod u+s "$pkgdir/usr/bin/tscheckpass"
}
|