development/cpan2tgz: Initial import

This commit is contained in:
Martin Lefebvre 2010-05-11 14:05:50 +02:00 committed by Robby Workman
parent fa2330dc2d
commit ac82954665
4 changed files with 119 additions and 0 deletions

View File

@ -0,0 +1,2 @@
cpan2tgz is an utility to create Slackware packages from CPAN Perl
module distributions. It was created by the author of slapt-get.

View File

@ -0,0 +1,46 @@
--- cpan2tgz-0.6/buildslackpkg.sh.orig 2006-08-23 15:51:09.546266236 -0500
+++ cpan2tgz-0.6/buildslackpkg.sh 2006-08-23 16:02:48.273371442 -0500
@@ -1,8 +1,11 @@
#!/bin/sh
-DESTINATION=/tmp/$$
+PKG=/tmp/SBo/package-cpan2tgz
+OUTPUT=/tmp
+DESTINATION=$PKG
VERSION=`grep VERSION cpan2tgz |awk '{print $4}'|cut -f2 -d\"`
PKGNAME=cpan2tgz
+TAG=_SBo
perl Makefile.PL
make
@@ -32,11 +35,8 @@
if [ -d ./usr/share/man ]; then
mv ./usr/share/man ./usr
fi
- if [ -d ./usr/bin ]; then
- chown -R root.bin ./usr/bin
- chmod 755 ./usr/bin/*
- fi
chmod 644 ./usr/man/man?/*
+ gzip -9 ./usr/man/man?/*
rmdir ./usr/share
mkdir install
@@ -51,8 +51,6 @@
rm $PERLLOCALPOD
fi
- echo "perl" > ./install/slack-required
-
cat >./install/slack-desc <<EOF
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
@@ -73,7 +71,7 @@
${PKGNAME}: http://software.jaos.org/
${PKGNAME}:
EOF
- makepkg -l y -c n /usr/src/${PKGNAME}-${VERSION}-noarch-1.tgz
+ makepkg -l y -c n ${OUTPUT}/${PKGNAME}-${VERSION}-noarch-1$TAG.tgz
)
make distclean

View File

@ -0,0 +1,63 @@
#!/bin/sh
# Slackware build script for cpan.tgz
# Copyright 2006 Martin Lefebvre <dadexter@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.
# Modifed by the SlackBuilds.org project
# Requirements
# CPAN (obviously)
# Perl (duh)
# Getopt::Long (can be installed using cpan2tgz)
########################################################################
# #
# !!!- IMPORTANT NOTE - THIS MEANS YOU -!!! #
# #
# The following variables are mostly a reference. The real magic is #
# done in buildslackpkg.diff. If you want to change something #
# like the BUILD variable, you should do that here and in there. #
# #
########################################################################
PRGNAM=cpan2tgz
VERSION=0.6
ARCH=noarch
BUILD=1
TAG=_SBo
CWD=`pwd`
TMP=${TMP:-/tmp/SBo}
set -e
# CFLAGS are not used here, as the arch is 'noarch'
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
cat ${CWD}/buildslackpkg.diff | patch -p0 || exit 1
cd $PRGNAM-$VERSION
./buildslackpkg.sh

View File

@ -0,0 +1,8 @@
PRGNAM="cpan2tgz"
VERSION="0.6"
HOMEPAGE="http://software.jaos.org"
DOWNLOAD="http://software.jaos.org/source/cpan2tgz/cpan2tgz-0.6.tar.gz"
MD5SUM="6fbecc80d3146b11259fad8c6189d387"
MAINTAINER="Martin Lefebvre"
EMAIL="dadexter@gmail.com"
APPROVED="robw810,Alan_Hicks"