mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
71 lines
2.2 KiB
Bash
71 lines
2.2 KiB
Bash
# $Id$
|
|
# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
|
|
# Contributor: Tom Kuther <gimpel@sonnenkinder.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - pass LIBS="-lboost_thread -lboost_system" to configure to fix linking on ARM
|
|
|
|
pkgname=snapper
|
|
pkgver=0.5.4
|
|
pkgrel=2
|
|
pkgdesc="A tool for managing BTRFS and LVM snapshots. It can create, diff and restore snapshots and provides timelined auto-snapping."
|
|
arch=('x86_64')
|
|
url="http://snapper.io"
|
|
license=('GPL2')
|
|
depends=('btrfs-progs' 'libxml2' 'dbus' 'boost-libs' 'acl')
|
|
makedepends=('boost' 'lvm2' 'libxslt' 'docbook-xsl' 'pam' 'git' 'systemd')
|
|
optdepends=('pam: pam_snapper')
|
|
backup=('etc/conf.d/snapper')
|
|
source=("ftp://ftp.suse.com/pub/projects/$pkgname/$pkgname-$pkgver.tar.bz2"
|
|
'add-missing-pthread-library-for-server.patch')
|
|
sha256sums=('5af181423fb2b272ad45c6a38501aad13f87f3efb0b3d37595b795ec1afab7f2'
|
|
'933c3f6c4974885a015951906aba7771c5785e520b3d8f3619a92c2186bc6019')
|
|
|
|
prepare() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
# https://github.com/openSUSE/snapper/pull/409
|
|
patch -Np1 -i ../add-missing-pthread-library-for-server.patch
|
|
|
|
# cron names
|
|
sed -e 's@suse.de-snapper@snapper@g' -i scripts/Makefile.am
|
|
|
|
# fix sysconf dir
|
|
sed -e 's@/etc/sysconfig@/etc/conf.d@g' -i scripts/*snapper*
|
|
|
|
# fix pam plugin install location
|
|
sed -i -e 's@shell echo /@shell echo /usr/@g' pam/Makefile.am
|
|
|
|
# all in /usr/bin
|
|
sed -i -e 's@/usr/sbin@/usr/bin@g' data/org.opensuse.Snapper.service
|
|
|
|
# NTP drift file location
|
|
sed -i -e 's@/var/lib/ntp/drift/ntp.drift@/var/lib/ntp/ntp.drift@' data/base.txt
|
|
|
|
# man pages sysconfig location
|
|
sed -i -e 's@/etc/sysconfig@/etc/conf.d@g' doc/*
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
aclocal
|
|
libtoolize --force --automake --copy
|
|
autoheader
|
|
automake --add-missing --copy
|
|
autoconf
|
|
LIBS="-lboost_thread -lboost_system" ./configure --prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--with-conf=/etc/conf.d \
|
|
--disable-zypp \
|
|
--disable-silent-rules
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 data/sysconfig.snapper \
|
|
"$pkgdir"/etc/conf.d/snapper
|
|
}
|