Date: Friday, May 12, 2017 @ 22:46:14 Author: eworm Revision: 227893 initial import of pacredir
Added: pacredir/ pacredir/repos/ pacredir/trunk/ pacredir/trunk/PKGBUILD pacredir/trunk/pacredir.install ------------------+ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ pacredir.install | 6 ++++++ 2 files changed, 39 insertions(+) Added: pacredir/trunk/PKGBUILD =================================================================== --- pacredir/trunk/PKGBUILD (rev 0) +++ pacredir/trunk/PKGBUILD 2017-05-12 22:46:14 UTC (rev 227893) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Christian Hesse <[email protected]> + +pkgname=pacredir +pkgver=0.2.2 +pkgrel=1 +pkgdesc='redirect pacman requests, assisted by avahi service discovery' +arch=('i686' 'x86_64') +url='https://github.com/eworm-de/pacredir' +depends=('libsystemd' 'avahi' 'curl' 'iniparser' 'darkhttpd' 'libmicrohttpd') +makedepends=('systemd' 'markdown') +license=('GPL') +conflicts=('paccache') +replaces=('paccache') +install=pacredir.install +backup=('etc/pacredir.conf' 'etc/pacman.d/pacredir') +validpgpkeys=('BD84DE71F493DF6814B0167254EDC91609BC9183') # Christian Hesse <[email protected]> +source=("https://www.eworm.de/download/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.asc}) +sha256sums=('d00d9cc7b9c2b93a1813a97cced00b3b502dc6db4cac5346e3afa1e7464e1e7c' + 'SKIP') + +build() { + cd ${pkgname}-${pkgver}/ + + make +} + +package() { + cd ${pkgname}-${pkgver}/ + + make DESTDIR="${pkgdir}" install +} + Property changes on: pacredir/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: pacredir/trunk/pacredir.install =================================================================== --- pacredir/trunk/pacredir.install (rev 0) +++ pacredir/trunk/pacredir.install 2017-05-12 22:46:14 UTC (rev 227893) @@ -0,0 +1,6 @@ +#!/bin/sh + +post_install() { + echo " > For instructions visit: https://github.com/eworm-de/pacredir#usage" +} +
