blob: 993a8f3a9de5ebc0ea28f3b5db5567be2b51fb5d (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: Sravan Pannala <sradjoker@endeavouros.com>
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
# Contributor: Tom Kuther <gimpel@sonnenkinder.org>
# Contributor: NicoHood <archlinux {cat} nicohood {dog} de>
pkgname=snapper-git
_gitname=snapper
pkgver=0.10.3.git.2211.03a6f3b
pkgrel=1
pkgdesc="A tool for managing BTRFS and LVM snapshots. It can create, diff and restore snapshots and provides timelined auto-snapping."
provides=('snapper')
conflicts=('snapper')
arch=('x86_64' 'aarch64')
url="http://snapper.io"
license=('GPL2')
depends=('btrfs-progs' 'libxml2' 'dbus' 'boost-libs' 'acl' 'json-c')
makedepends=('boost' 'lvm2' 'libxslt' 'docbook-xsl' 'pam' 'git' 'systemd')
optdepends=('pam: pam_snapper')
backup=('etc/conf.d/snapper')
source=("snapper::git+https://github.com/openSUSE/snapper.git"
"conf-d.patch"
"cron-rename.patch"
"drift-file-path.patch"
"usr-paths.patch")
sha256sums=('SKIP'
'267118a198583fc1ff10f376e108c0600844e0b1370e44ac4674b20332bff106'
'0e76f2aef9ac05d719e25c2d60e7eba4b533778a57fe98fd047f256c6845f65f'
'093c7993e466a0cf9c0794a971825f5f1b40047512857bc124ed0d63dbb306d6'
'710da7638a1c123a6985398a15cd7c03432fc3b2d781e2d7a20a1a52669eed95')
pkgver() {
cd "$_gitname"
echo $(cat VERSION).git.$(git rev-list --count HEAD).$(git rev-parse --short master)
}
prepare() {
cd "$_gitname"
patch -p1 -i "$srcdir/conf-d.patch"
patch -p1 -i "$srcdir/cron-rename.patch"
patch -p1 -i "$srcdir/drift-file-path.patch"
patch -p1 -i "$srcdir/usr-paths.patch"
}
build() {
cd "$_gitname"
aclocal
libtoolize --force --automake --copy
autoheader
automake --add-missing --copy
autoconf
./configure --prefix=/usr \
--sbindir=/usr/bin \
--with-conf=/etc/conf.d \
--with-pam-security=/usr/lib/security \
--disable-zypp \
--disable-silent-rules
make
}
package() {
cd "$_gitname"
make DESTDIR="$pkgdir" install
install -Dm644 data/sysconfig.snapper \
"$pkgdir"/etc/conf.d/snapper
rm -rf "$pkgdir/usr/lib/snapper/testsuite/"
}
|