libraries/uri-escape: Initial import
This commit is contained in:
parent
9f42b5262e
commit
be63a2318d
|
@ -0,0 +1,6 @@
|
|||
URI::Escape perl module
|
||||
|
||||
URI::Escape is a perl module. It module provides functions to escape and
|
||||
unescape URI strings as defined by RFC 2396 (and updated by RFC 2732).
|
||||
A URI consists of a restricted set of characters, denoted as uric in RFC 2396.
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
uri-escape: URI::Escape (perl module)
|
||||
uri-escape:
|
||||
uri-escape: This module provides functions to escape and unescape URI strings
|
||||
uri-escape: as defined by RFC 2396 (and updated by RFC 2732).
|
||||
uri-escape:
|
||||
uri-escape: Home: http://http://search.cpan.org/~gaas/URI-1.35/URI/Escape.pm
|
||||
uri-escape:
|
||||
uri-escape:
|
||||
uri-escape:
|
||||
uri-escape:
|
|
@ -0,0 +1,52 @@
|
|||
#!/bin/sh
|
||||
|
||||
######################################
|
||||
# Slackware Build Script #
|
||||
######################################
|
||||
# AUTHOR: Lehman Black #
|
||||
# CONTACT: bzqwerty[at]gmail[dot]com #
|
||||
######################################
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
PROG=uri-escape
|
||||
VERSION=1.35
|
||||
ARCH=noarch
|
||||
TAG=${TAG:-_SBo}
|
||||
BUILD=${BUILD:-1}
|
||||
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PROG
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
chown -R root:root .
|
||||
chmod a-s,u+w,go-w+r .
|
||||
|
||||
tar xvf $CWD/URI-$VERSION.tar.gz || exit 1
|
||||
cd URI-$VERSION
|
||||
|
||||
perl Makefile.PL PREFIX=/usr || exit 1
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PROG-$VERSION
|
||||
cp -a Changes README rfc2396.txt $PKG/usr/doc/$PROG-$VERSION
|
||||
cat $CWD/$PROG.SlackBuild > $PKG/usr/doc/$PROG-$VERSION/$PROG.SlackBuild
|
||||
|
||||
# Remove the perllocal.pod file
|
||||
rm -f $PKG/usr/lib/perl5/5.8.8/i486-linux/perllocal.pod
|
||||
|
||||
mv $PKG/usr/share/man $PKG/usr
|
||||
gzip -9 $PKG/usr/man/man?/*
|
||||
rm -rf $PKG/usr/share
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c y $OUTPUT/$PROG-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="uri-escape"
|
||||
VERSION="1.35"
|
||||
HOMEPAGE="http://search.cpan.org/~gaas/URI-1.35/URI/Escape.pm"
|
||||
DOWNLOAD="http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/URI-1.35.tar.gz"
|
||||
MD5SUM="1a933b1114c41a25587ee59ba8376f7c"
|
||||
MAINTAINER="Lehman Black"
|
||||
EMAIL="bzqwerty[at]gmail[dot]com "
|
||||
APPROVED="robw810"
|
Loading…
Reference in New Issue