40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
# Template file for 'sabnzbd'
|
|
pkgname=sabnzbd
|
|
version=2.3.8
|
|
revision=1
|
|
archs=noarch
|
|
wrksrc="SABnzbd-${version}"
|
|
pycompile_dirs="/usr/share/sabnzbd"
|
|
depends="par2cmdline python-cheetah python-configobj python-feedparser
|
|
python-gntp python-openssl python-yenc unzip"
|
|
short_desc="Open Source Binary Newsreader written in Python"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="https://sabnzbd.org/"
|
|
distfiles="https://github.com/sabnzbd/sabnzbd/releases/download/${version}/SABnzbd-${version}-src.tar.gz"
|
|
checksum=0685e867250106c0cab6cc9ffb5241caa9b1e2cdd43faec67ea41021d4997b72
|
|
|
|
post_extract() {
|
|
rm -rf gntp sabnzbd/utils/{feedparser,configobj}.py
|
|
rm -f licenses/License-{feedparser,configobj,gntp,Python}.txt
|
|
rm -rf solaris
|
|
|
|
# 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
|
|
}
|