mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/flexget: Added (multipurpose content downloader)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
3564bd44f4
commit
2ffb8f8251
4 changed files with 96 additions and 0 deletions
11
network/flexget/README
Normal file
11
network/flexget/README
Normal file
|
@ -0,0 +1,11 @@
|
|||
FlexGet is a multipurpose automation tool for content like torrents,
|
||||
nzbs, podcasts, comics, etc. FlexGet is able to handle different kinds
|
||||
of sources like RSS-feeds, html pages and csv files. There are even some
|
||||
plugins for sites that do not provide any kind of useful feeds.
|
||||
|
||||
FlexGet is extremely useful in conjunction with applications which have
|
||||
watch directory support, such as rtorrent.
|
||||
|
||||
Requires: pysetuptools, FeedParser, SQLAlchemy, PyYAML, BeautifulSoup,
|
||||
html5lib, PyRSS2Gen, pynzb, progressbar
|
||||
|
56
network/flexget/flexget.SlackBuild
Normal file
56
network/flexget/flexget.SlackBuild
Normal file
|
@ -0,0 +1,56 @@
|
|||
#!/bin/sh
|
||||
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||
# Copyright 2009-2010 Eric Hameleers, Eindhoven, Netherlands
|
||||
# Slackware build script for flexget
|
||||
# Written by Lionel Young <redtricycle@gmail.com>
|
||||
# Based on http://slackbuilds.org/template.SlackBuild
|
||||
|
||||
PRGNAM=flexget
|
||||
VERSION=${VERSION:-1.0r1656}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
TARNAM=FlexGet # their tarball is capitalized
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$TARNAM-$VERSION.tar.gz
|
||||
cd $TARNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
python setup.py build || exit 1
|
||||
python setup.py install --root=$PKG || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
README LICENSE PKG-INFO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
network/flexget/flexget.info
Normal file
10
network/flexget/flexget.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="flexget"
|
||||
VERSION="1.0r1656"
|
||||
HOMEPAGE="http://flexget.com/"
|
||||
DOWNLOAD="http://download.flexget.com/unstable/FlexGet-1.0r1656.tar.gz"
|
||||
MD5SUM="f2ae7eb7f457fb44c1eb752c61caa6ad"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Lionel Young"
|
||||
EMAIL="redtricycle@gmail.com"
|
||||
APPROVED="Niels Horn"
|
19
network/flexget/slack-desc
Normal file
19
network/flexget/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
flexget: flexget (multipurpose content downloader)
|
||||
flexget:
|
||||
flexget: FlexGet is a multipurpose automation tool for content like torrents,
|
||||
flexget: nzbs, podcasts, comics, etc. FlexGet is able to handle different
|
||||
flexget: kinds of sources like RSS-feeds, html pages and csv files.
|
||||
flexget:
|
||||
flexget: FlexGet is extremely useful in conjunction with applications which
|
||||
flexget: have watch directory support, such as rtorrent.
|
||||
flexget:
|
||||
flexget: Home: http://flexget.com/
|
||||
flexget:
|
Loading…
Reference in a new issue