blob: 4f818f6461ed6bd5cd2db2a43362aec3ba4cae35 (
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
38
39
40
41
42
43
|
pkgname=slock-custom-git
_pkgname=slock
pkgver=1.4
pkgrel=1
pkgdesc='Simple X display locker'
url='http://git.vasthecat.ru/slock.git'
arch=('i686' 'x86_64' 'armv7h')
license=('MIT')
makedepends=('git')
depends=('libxrandr')
source=(
'config.h'
'slock.c'
'slock.1'
'Makefile'
'arg.h'
'config.mk'
'explicit_bzero.c'
'LICENSE'
'util.h'
)
md5sums=(
'SKIP'
'31bcab9d9fc728d06ce0e7901ac76ea1'
'9b6e3255f77ba8d96dde17058580761c'
'b55b4021060bc816ff9ac68ef5269144'
'088564fdbdbbae55b777dce80abc602f'
'f0fad6e2be404189b869a7598cf98626'
'4885a6c0db3b9f2fd6c07100fea0fe6e'
'41b71f339fba66b45a89418a350ef914'
'f26ca62b855e6d8e134f2ecdf9f0ca92'
)
provides=("${_pkgname}")
conflicts=("${_pkgname}")
build() {
make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
}
package() {
make PREFIX=/usr DESTDIR="${pkgdir}" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|