void-packages/srcpkgs/sabnzbd/template
2014-07-02 12:52:19 +02:00

43 lines
1.5 KiB
Plaintext

# Template file for 'sabnzbd'
pkgname=sabnzbd
version=0.7.17
revision=1
patch_args="-p1"
wrksrc="SABnzbd-${version}"
depends="par2cmdline python-cheetah python-configobj python-feedparser python-gntp python-openssl python-yenc python>=2.7 unzip"
maintainer="Dominik Honnef <dominik@honnef.co>"
# 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"
homepage="http://sabnzbd.org/"
short_desc="SABnzbd is an Open Source Binary Newsreader written in Python"
distfiles="http://downloads.sourceforge.net/sabnzbdplus/SABnzbd-${version}-src.tar.gz"
checksum=a501517dbaf161deab2153118ff3b44512ee1d8984c3603bf17c593cf080eb09
pre_install() {
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() {
vmkdir usr/share/licenses/${pkgname}
mv licenses/* ${DESTDIR}/usr/share/licenses/${pkgname}
mv COPYRIGHT.txt ${DESTDIR}/usr/share/licenses/${pkgname}
rmdir licenses
vmkdir usr/share/sabnzbd
mv * ${DESTDIR}/usr/share/sabnzbd/
mkdir -p ${DESTDIR}/usr/bin/
ln -fs /usr/share/sabnzbd/SABnzbd.py ${DESTDIR}/usr/bin/sabnzbd
}