mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
added community/snapper
This commit is contained in:
parent
63b1da3592
commit
344d7062fb
1 changed files with 66 additions and 0 deletions
66
community/snapper/PKGBUILD
Normal file
66
community/snapper/PKGBUILD
Normal file
|
@ -0,0 +1,66 @@
|
|||
# $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=1
|
||||
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")
|
||||
sha256sums=('5af181423fb2b272ad45c6a38501aad13f87f3efb0b3d37595b795ec1afab7f2')
|
||||
|
||||
prepare() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
|
||||
# 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
|
||||
}
|
Loading…
Reference in a new issue