mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
network/ljpms: Added (LiveJournal backup and maintenance tool)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
f2cba331fa
commit
d21933df0a
4 changed files with 99 additions and 0 deletions
4
network/ljpms/README
Normal file
4
network/ljpms/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
LJPMS is a perl script for backing up, restoring and adjusting
|
||||
permissions to all your LiveJournal posts at once.
|
||||
|
||||
This requires perl-SOAP-Lite and perl-xml-libxml.
|
66
network/ljpms/ljpms.SlackBuild
Normal file
66
network/ljpms/ljpms.SlackBuild
Normal file
|
@ -0,0 +1,66 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for LJPMS
|
||||
|
||||
# Copyright 2011 Fridrich von Stauffenberg <cancellor2@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=ljpms
|
||||
VERSION=${VERSION:-1.4}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# LJPMS is written in Perl
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
mkdir $PRGNAM-$VERSION
|
||||
unzip $CWD/$PRGNAM-$VERSION.zip -d $PRGNAM-$VERSION
|
||||
cd $PRGNAM-$VERSION
|
||||
|
||||
chown -R root:root .
|
||||
|
||||
sed 's|\r||g;
|
||||
s|#!perl|#!/usr/bin/perl|g;
|
||||
s|Digest::Perl::MD5|Digest::MD5|g;
|
||||
s|XML::SAX::Expat|XML::SAX::PurePerl|g' $PRGNAM.pl > $PRGNAM
|
||||
chmod 755 $PRGNAM
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
mv $PRGNAM $PKG/usr/bin
|
||||
|
||||
mkdir -p $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 -c n -l y $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
network/ljpms/ljpms.info
Normal file
10
network/ljpms/ljpms.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="ljpms"
|
||||
VERSION="1.4"
|
||||
HOMEPAGE="http://ljsm.feechki.org/ljpms.html"
|
||||
DOWNLOAD="http://ljsm.feechki.org/ljpms-1.4.zip"
|
||||
MD5SUM="75ce5d521440945cb70b6994c743d444"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Fridrich von Stauffenberg"
|
||||
EMAIL="cancellor2@gmail.com"
|
||||
APPROVED="Erik Hanson"
|
19
network/ljpms/slack-desc
Normal file
19
network/ljpms/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 ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
ljpms: LJPMS (LiveJournal backup and maintenance tool)
|
||||
ljpms:
|
||||
ljpms: LJPMS is a perl script for backing up, restoring and adjusting
|
||||
ljpms: permissions to all your LiveJournal posts at once.
|
||||
ljpms:
|
||||
ljpms: Homepage: http://ljsm.feechki.org/ljpms.html
|
||||
ljpms:
|
||||
ljpms:
|
||||
ljpms:
|
||||
ljpms:
|
||||
ljpms:
|
Loading…
Reference in a new issue