removed community/dropbear after upstream bump

This commit is contained in:
David Beauchamp 2014-11-04 11:27:26 -05:00
parent a34310e041
commit f544e1c56c
2 changed files with 0 additions and 58 deletions

View file

@ -1,48 +0,0 @@
# $Id$
# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
# Contributor: Simon Perry <aur [at] sanxion [dot] net>
# Contributor: Bartlomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
# Contributor: Jeremy Cowgar <jeremy@cowgar.com>
# Contributor: Simon Perry <aur [at] sanxion [dot] net>
# Remove when bumped upstream
pkgname=dropbear
pkgver=2014.65
pkgrel=1
pkgdesc="Lightweight replacement for sshd"
arch=('i686' 'x86_64')
url="http://matt.ucc.asn.au/dropbear/dropbear.html"
license=('MIT')
depends=('zlib')
source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
$pkgname.service)
sha256sums=('e20057aa7db0f9ea4efdcbfc6fc6b73a648b47b6ab6a01659472142b06f5f56c'
'1920dc2d9a1dd86b3137ae4348196f9b95142d6eee484ee536bc7dfed7f0def0')
prepare() {
sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' $pkgname-$pkgver/options.h
}
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR="${pkgdir}/"
# Configuration files
install -d "${pkgdir}/etc/$pkgname"
install -D -m644 "${srcdir}/$pkgname.service" "${pkgdir}/usr/lib/systemd/system/$pkgname.service"
# License file
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/$pkgname/LICENSE"
}

View file

@ -1,10 +0,0 @@
[Unit]
Description=Dropbear SSH Daemon
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/dropbear -F -P /run/dropbear.pid
[Install]
WantedBy=multi-user.target