mirror of
https://github.com/gwenhael-le-moine/npm2tgz.git
synced 2024-11-16 07:48:08 +01:00
first commit
This commit is contained in:
commit
c2e3780e4f
3 changed files with 106 additions and 0 deletions
32
LICENSE
Normal file
32
LICENSE
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Author:: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
|
||||
# Copyright:: Copyright (c) 2013, Gwenhael Le Moine
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are
|
||||
# met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# * Redistributions in binary form must reproduce the above
|
||||
# copyright notice, this list of conditions and the following
|
||||
# disclaimer in the documentation and/or other materials provided
|
||||
# with the distribution.
|
||||
#
|
||||
# * Neither the name of the @organization@ nor the names of its
|
||||
# contributors may be used to endorse or promote products derived
|
||||
# from this software without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "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 GWENHAEL LE
|
||||
MOINE 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.
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
npm2tgz generates a Slackware compatible package from a node module
|
||||
usage: npm2tgz <modules_name>
|
||||
The resulting package is located under /tmp
|
71
npm2tgz
Executable file
71
npm2tgz
Executable file
|
@ -0,0 +1,71 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Author:: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
|
||||
# Copyright:: Copyright (c) 2013, Gwenhael Le Moine
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are
|
||||
# met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# * Redistributions in binary form must reproduce the above
|
||||
# copyright notice, this list of conditions and the following
|
||||
# disclaimer in the documentation and/or other materials provided
|
||||
# with the distribution.
|
||||
#
|
||||
# * Neither the name of the @organization@ nor the names of its
|
||||
# contributors may be used to endorse or promote products derived
|
||||
# from this software without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "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 GWENHAEL LE MOINE 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.
|
||||
#
|
||||
|
||||
BUILD=${BUILD:=1}
|
||||
TAG=${TAG:=SBo}
|
||||
OUTPUT=${OUTPUT:=/tmp}
|
||||
ARCH=${ARCH:=npmjs}
|
||||
PREFIX=${PREFIX:=/usr}
|
||||
NPMBIN=${NPMBIN:=/usr/bin/npm}
|
||||
|
||||
PKG=/tmp/$TAG/pkg-$PRGNAM
|
||||
|
||||
[ ! -x $NPMBIN ] && echo "npm missing" && exit 1
|
||||
if [ "x$1" == "x" ] || [ "x$1" == "x--help" ] || [ "x$1" == "x-h" ]; then
|
||||
echo "$0 generates a Slackware compatible package from a node module"
|
||||
echo " usage: <OPTIONS> $0 <modules_name>"
|
||||
echo " The resulting package is located under $OUTPUT"
|
||||
echo " possible OPTIONS are:"
|
||||
echo " BUILD=<value> (currently: $BUILD)"
|
||||
echo " TAG=<value> (currently: $TAG)"
|
||||
echo " OUTPUT=<value> (currently: $OUTPUT)"
|
||||
echo " ARCH=<value> (currently: $ARCH)"
|
||||
echo " PREFIX=<value> (currently: $PREFIX)"
|
||||
echo " NPMBIN=<value> (currently: $NPMBIN)"
|
||||
|
||||
exit 1
|
||||
fi
|
||||
|
||||
PRGNAM=$1
|
||||
|
||||
[ -e $PKG ] && rm -fr $PKG
|
||||
mkdir -p $PKG
|
||||
|
||||
DESTDIR=$PKG npm install -g $PRGNAM
|
||||
|
||||
VERSION=$(grep -i "\"version\": \"\(.*\)\"," $PKG/usr/lib$(uname -m | grep -o "64")/node_modules/$PRGNAM/package.json | sed 's|^[ ]*"version": "\(.*\)",$|\1|g')
|
||||
|
||||
cd $PKG
|
||||
makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo $VERSION | tr - .)-$ARCH-$BUILD$TAG.txz
|
Loading…
Reference in a new issue