# Maintainer: Cornelius Wild < arch-aur at dervomsee dot de > # Contributor: Sjoerd Sterk # Contributor: Jason Lenz # Contributor: RafaƂ Michalski pkgname="burp-backup-dev" _pkgname="burp" pkgver=3.1.4 pkgrel=1 pkgdesc="A next generation experimental version of the burp backup and restore program." arch=('i686' 'x86_64') license=("AGPL3") depends=('acl' 'librsync' 'openssl') makedepends=('uthash') provides=('burp-backup') conflicts=('burp-backup' 'burp-backup-git') install="${_pkgname}.install" url='https://github.com/grke/burp' source=( "https://github.com/grke/burp/archive/${pkgver}.tar.gz" "https://salsa.debian.org/debian/burp/raw/debian/debian/logrotate" "https://salsa.debian.org/debian/burp/raw/debian/debian/burp.cron.d" "burp.install" "burp-server.service" "burp-client.service" "burp-client.timer" "01-runpath_fix.patch" "readme-archlinux.txt" ) sha256sums=('f5ae92d7abc1e89e07013cae2fc48d3a505a59042f4f8a44e94a2442d647f35d' '97cf07c75b4ff26b64436eb053bfa01c6f148579e36802ffd7e162557c7f8ce0' '3e8b619248cf6c1f094f075a36e4cf2df0f497f6e06746d4e9dbd60b8de7ff4c' '1d2c97471494dd5924bd0676e817ebfac54465c4ec0e23b49ad1c3c91d36460f' '94e1b5f8cf61c44f84675f685279e0d3376abd61ac1e6e4f5da0dd6b922c481f' '7908970e23cfb08554cbf53da1f8f3193a6b6ee076584f797644efab8431bfe3' '0310a26e9a0af76f847130019cb865dfa09a5e8f9899bfd6526c69e82d160bf4' '84c68c433c25e84be71b13c42f10fea9697aaa08245c01c30d4400aeb7c08095' 'e3e633f09d03efa3f2c1e769a2e31f514466ebd97cf6bb5f1ef0761e17abec67') backup=( "etc/burp/burp.conf" "etc/burp/burp-server.conf" "etc/burp/CA.cnf" "etc/logrotate.d/burp" ) prepare() { cd "$_pkgname-$pkgver" patch -Np1 -i "$srcdir/01-runpath_fix.patch" } build() { cd "$_pkgname-$pkgver" autoreconf -vif # In the 2.70 version of autotools the ability exists to define "runstatedir" # which will eliminate the need for the patch file. Archlinux is currently at v2.69. # I.E. use "--runstatedir=/run" when 2.70 is released. ./configure --prefix=/usr \ --sbindir=/usr/bin \ --localstatedir=/var \ --sysconfdir=/etc/burp \ CFLAGS="$CFLAGS -Wno-error=format-security" } package() { cd "$_pkgname-$pkgver" make DESTDIR="$pkgdir/" install-all # Setup logrotate mkdir -p "$pkgdir/etc/logrotate.d" cp "$srcdir/logrotate" "$pkgdir/etc/logrotate.d/burp" # Copy useful user setup files mkdir -p "$pkgdir/usr/share/burp/" cp "$srcdir/burp.cron.d" "$pkgdir/usr/share/burp/" mkdir -p "$pkgdir/usr/lib/systemd/system/" cp "$srcdir/burp-server.service" "$pkgdir/usr/lib/systemd/system/" cp "$srcdir/burp-client.service" "$pkgdir/usr/lib/systemd/system/" cp "$srcdir/burp-client.timer" "$pkgdir/usr/lib/systemd/system/" # Copy archlinux specific documentation mkdir -p "$pkgdir/usr/share/doc/burp/" cp "$srcdir/readme-archlinux.txt" "$pkgdir/usr/share/doc/burp/readme-archlinux.txt" # Fix permissions mkdir -p "$pkgdir/var/spool/burp" chmod 0755 "$pkgdir/var/spool" chmod 0700 "$pkgdir/var/spool/burp" chmod -R go-rwx "$pkgdir/etc/burp" # Move "testclient" example to subfolder so it doesn't automatically get added to backup mv "$pkgdir/etc/burp/clientconfdir/testclient" "$pkgdir/etc/burp/clientconfdir/incexc" } # Helpful packaging references: # General packaging -> https://wiki.archlinux.org/index.php/Creating_packages # Generating patches -> https://wiki.archlinux.org/index.php/Patching_in_ABS # Backing up package config files -> https://wiki.archlinux.org/index.php/Pacnew_and_Pacsave_files # vim:set ts=2 sw=2 et: