From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/nzbget/ChangeLog | 18 ++++++++++++++++++ community/nzbget/PKGBUILD | 30 ++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 community/nzbget/ChangeLog create mode 100644 community/nzbget/PKGBUILD (limited to 'community/nzbget') diff --git a/community/nzbget/ChangeLog b/community/nzbget/ChangeLog new file mode 100644 index 000000000..74030cd3d --- /dev/null +++ b/community/nzbget/ChangeLog @@ -0,0 +1,18 @@ +2010-05-12 Jaroslav Lichtblau + * Fixed FS#19399 - missing postprocess-example.conf file + +2010-05-04 Jaroslav Lichtblau + * Update to major release 0.7.0 + +2009-10-11 Jaroslav Lichtblau + * Dependency added (gnutls) in v0.6.0-2 + +2008-03-20 Jaroslav Lichtblau + * Update to major release 0.6.0 + +2008-09-25 Jaroslav Lichtblau + * Update to major release 0.5.1 + +2008-09-09 Jaroslav Lichtblau + * Package moved to [community] + * Update to major release 0.5.0 diff --git a/community/nzbget/PKGBUILD b/community/nzbget/PKGBUILD new file mode 100644 index 000000000..8d0ac39a9 --- /dev/null +++ b/community/nzbget/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 16899 2010-05-12 17:57:00Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau + +pkgname=nzbget +pkgver=0.7.0 +pkgrel=2 +pkgdesc="Downloads from Usenet using .nzb files" +arch=('i686' 'x86_64') +url="http://nzbget.sourceforge.net/" +license=('GPL') +depends=('gnutls' 'libpar2' 'libxml2' 'ncurses') +makedepends=('autoconf' 'automake') +source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) +md5sums=('27971846aba75f5e312d80dce7edbc5d') + +build() { + cd ${srcdir}/$pkgname-$pkgver + +# autoreconf -fi || return 1 +#uudeview ("uulib") has been removed, and "it did not work well anyway" + ./configure --prefix=/usr --enable-parcheck || return 1 + make || return 1 + make DESTDIR=${pkgdir} install + +#other files + install -d ${pkgdir}/usr/share/$pkgname || return 1 + install -m644 -t ${pkgdir}/usr/share/$pkgname \ + AUTHORS postprocess-example.sh postprocess-example.conf \ + ChangeLog nzbget.conf.example README || return 1 +} -- cgit v1.2.3-54-g00ecf