5e5a463849
I don't use it and can't test it.
45 lines
1.5 KiB
Bash
45 lines
1.5 KiB
Bash
# Template file for 'sabnzbd'
|
|
pkgname=sabnzbd
|
|
version=1.2.3
|
|
revision=1
|
|
wrksrc="SABnzbd-${version}"
|
|
depends="par2cmdline python-cheetah python-configobj python-feedparser
|
|
python-gntp python-openssl python-yenc unzip"
|
|
maintainer="Orphaned <orphan@voidlinux.eu>"
|
|
# sabnzbd itself is GPL, but it bundles libraries that are covered by
|
|
# BSD, LGPL-2 and MIT. In combination, that makes this package GPL.
|
|
license="GPL-2"
|
|
homepage="http://sabnzbd.org/"
|
|
short_desc="Open Source Binary Newsreader written in Python"
|
|
distfiles="https://github.com/sabnzbd/sabnzbd/releases/download/${version}/SABnzbd-${version}-src.tar.gz"
|
|
checksum=a0100d19edd9c6b528f79214a64690941281758048e4ead6671446070e1e9e24
|
|
|
|
noarch=yes
|
|
pycompile_dirs="/usr/share/sabnzbd"
|
|
|
|
post_extract() {
|
|
rm -rf gntp sabnzbd/utils/{feedparser,configobj}.py
|
|
rm -f licenses/License-{feedparser,configobj,gntp,Python}.txt
|
|
rm -rf solaris
|
|
|
|
sed -i 's/from gntp import GNTPRegister/from gntp.core import GNTPRegister/' sabnzbd/notifier.py
|
|
|
|
# sabnzbd bundles a heavily modified version of cherrypy. It's
|
|
# uncertain what base version they use, or where each individual
|
|
# patch came from, so using upstream cherrypy isn't an option.
|
|
|
|
# sabnzbd also bundles a variety of small libraries, some of which
|
|
# haven't been maintained since 2006. There may be no point to
|
|
# packaging them separately.
|
|
}
|
|
|
|
do_install() {
|
|
vbin ${FILESDIR}/sabnzbd
|
|
|
|
vmkdir usr/share/sabnzbd
|
|
vcopy "*" usr/share/sabnzbd
|
|
|
|
for _f in licenses/* COPYRIGHT.txt; do
|
|
vlicense ${_f}
|
|
done
|
|
}
|