mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/plowshare: Added.
Plowshare is a command-line downloader and uploader for some of the most popular file-sharing websites. Thanks to Mikhail Cuddy.
This commit is contained in:
parent
8378f987c7
commit
599a3069bd
4 changed files with 83 additions and 0 deletions
7
network/plowshare/README
Normal file
7
network/plowshare/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
Plowshare is a command-line downloader/uploader for some of the most popular
|
||||
file-sharing websites. It presently supports Megaupload, Rapidshare, 2Shared,
|
||||
4Shared, ZShare, Badongo, Depositfiles, Mediafire, Netload.in, Storage.to,
|
||||
Uploaded.to, Uploading.com, Sendspace, Usershare and X7.to.
|
||||
|
||||
This requires recode. tesseract, js and/or perl-Magick are required
|
||||
(at runtime) for some sites. See the plowshare website for details.
|
47
network/plowshare/plowshare.SlackBuild
Executable file
47
network/plowshare/plowshare.SlackBuild
Executable file
|
@ -0,0 +1,47 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for plowshare
|
||||
|
||||
# Written by Mikhail Cuddy <mikhailcuddy@gmail.com>
|
||||
|
||||
PRGNAM=plowshare
|
||||
VERSION=${VERSION:-0.9.1}
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e # Exit on most errors
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tgz
|
||||
cd $PRGNAM-$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 {} \;
|
||||
|
||||
DESTDIR=$PKG PREFIX=/usr sh setup.sh install
|
||||
|
||||
rm -r $PKG/usr/share/doc
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
CHANGELOG COPYING README \
|
||||
$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/plowshare/plowshare.info
Normal file
10
network/plowshare/plowshare.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="plowshare"
|
||||
VERSION="0.9.1"
|
||||
HOMEPAGE="http://code.google.com/p/plowshare/"
|
||||
DOWNLOAD="http://plowshare.googlecode.com/files/plowshare-0.9.1.tgz"
|
||||
MD5SUM="df652252faa364965c122159769f7e56"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Mikhail Cuddy"
|
||||
EMAIL="mikhailcuddy@gmail.com"
|
||||
APPROVED="Erik Hanson"
|
19
network/plowshare/slack-desc
Normal file
19
network/plowshare/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------------------------------------------------------|
|
||||
plowshare: plowshare (file-sharing website utility)
|
||||
plowshare:
|
||||
plowshare: Plowshare is a command-line downloader/uploader for some of the most
|
||||
plowshare: popular file-sharing websites. It presently supports Megaupload,
|
||||
plowshare: Rapidshare, 2Shared, 4Shared, ZShare, Badongo, Depositfiles,
|
||||
plowshare: Mediafire, Netload.in, Storage.to, Uploaded.to, Uploading.com,
|
||||
plowshare: Sendspace, Usershare and X7.to.
|
||||
plowshare:
|
||||
plowshare: http://code.google.com/p/plowshare/
|
||||
plowshare:
|
||||
plowshare:
|
Loading…
Reference in a new issue