blob: c11e9bca8c09f0e7d472848d8210463ffda3ffb2 (
plain) (
blame)
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
|
# Contributor: Johannes Matheis <jomat+alpinebuild@jmt.gr>
# Maintainer: Johannes Matheis <jomat+alpinebuild@jmt.gr>
pkgname=i3lock
pkgver=2.10
pkgrel=0
pkgdesc="An improved screenlocker based upon XCB and PAM"
url="https://i3wm.org/i3lock/"
arch="all"
license="MIT"
depends="xkeyboard-config"
makedepends="libev-dev cairo-dev linux-pam-dev libxkbcommon-dev
xcb-util-image-dev which"
subpackages="$pkgname-doc"
source="$url/$pkgname-$pkgver.tar.bz2"
builddir="$srcdir/$pkgname-$pkgver"
prepare() {
default_prepare
cd "$builddir"
# Fix ticket FS#31544, sed line taken from gentoo
sed -i -e 's:login:base-auth:g' i3lock.pam
}
build() {
cd "$builddir"
make
}
check() {
cd "$builddir"
./i3lock -v
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
install -m755 -d "$pkgdir/usr/share/man/man1/"
install -m644 $pkgname.1 "$pkgdir/usr/share/man/man1/"
}
sha512sums="ea865b202668212b58d0b97d0263171847e1bd0c529e2fd3d26c15ef253861b9a8357ff2efaa6a4f342c4d0d1ab03bc00f95f4d4008760ec8e0767ac29195517 i3lock-2.10.tar.bz2"
|