mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
development/gradle: Added (Build Automation).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
5fe6e80d68
commit
08e8495840
6 changed files with 128 additions and 0 deletions
13
development/gradle/README
Normal file
13
development/gradle/README
Normal file
|
@ -0,0 +1,13 @@
|
|||
Gradle is build automation evolved.
|
||||
|
||||
Gradle can automate the building, testing, publishing, deployment and more of
|
||||
software packages or other types of projects such as generated static websites,
|
||||
generated documentation or indeed anything else.
|
||||
|
||||
Gradle combines the power and flexibility of Ant with the dependency management
|
||||
and conventions of Maven into a more effective way to build.
|
||||
|
||||
Powered by a Groovy DSL and packed with innovation, Gradle provides a declarative
|
||||
way to describe all kinds of builds through sensible defaults.
|
||||
Gradle is quickly becoming the build system of choice for many open source
|
||||
projects, leading edge enterprises and legacy automation challenges.
|
82
development/gradle/gradle.SlackBuild
Normal file
82
development/gradle/gradle.SlackBuild
Normal file
|
@ -0,0 +1,82 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gradle
|
||||
|
||||
# Copyright 2014 Arun Mascarenhas, arunmascarenhas[at]yahoo[dot]com
|
||||
# Copyright 2014 Arun Mascarenhas, Kansas City, MO, USA
|
||||
# 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.
|
||||
|
||||
# Started by Arun Mascarenhas (arunmascarenhas[at]yahoo[dot]com)
|
||||
|
||||
PRGNAM=gradle
|
||||
VERSION=${VERSION:-1.11}
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
GRADLE_HOME=/usr/share/gradle
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG/usr/share/java $PKG/$GRADLE_HOME $OUTPUT $PKG/usr/bin
|
||||
cd $TMP
|
||||
rm -rf ${PRGNAM}-$VERSION
|
||||
unzip $CWD/${PRGNAM}-$VERSION-bin.zip
|
||||
cd ${PRGNAM}-$VERSION
|
||||
chown -R root:root .
|
||||
|
||||
cp -a bin lib init.d media $PKG/$GRADLE_HOME/
|
||||
|
||||
mkdir -p $PKG/etc/profile.d/
|
||||
install -m755 $CWD/$PRGNAM.csh $PKG/etc/profile.d/$PRGNAM.csh
|
||||
install -m755 $CWD/$PRGNAM.sh $PKG/etc/profile.d/$PRGNAM.sh
|
||||
|
||||
cd $PKG/usr/share/java
|
||||
for jar in $PKG/$GRADLE_HOME/lib/*.jar ; do
|
||||
if [ -f $PKG/usr/share/java/$(basename jar) ]
|
||||
then
|
||||
echo "Skipping $jar"
|
||||
continue
|
||||
fi
|
||||
ln -s $GRADLE_HOME/lib/$(basename $jar) $(basename $jar)
|
||||
done
|
||||
cd -
|
||||
|
||||
cd $PKG/usr/bin
|
||||
ln -s $GRADLE_HOME/bin/gradle
|
||||
cd -
|
||||
|
||||
rm -f $PKG/usr/share/gradle/bin/gradle.bat
|
||||
|
||||
mkdir -p $PKG/usr/doc/${PRGNAM}-$VERSION
|
||||
cp -a NOTICE LICENSE $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}
|
2
development/gradle/gradle.csh
Normal file
2
development/gradle/gradle.csh
Normal file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/csh
|
||||
setenv GRADLE_HOME=/usr/share/gradle
|
10
development/gradle/gradle.info
Normal file
10
development/gradle/gradle.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="gradle"
|
||||
VERSION="1.11"
|
||||
HOMEPAGE="http://www.gradle.org/"
|
||||
DOWNLOAD="http://services.gradle.org/distributions/gradle-1.11-bin.zip"
|
||||
MD5SUM="67acb841861f9ae362d7e0675f0aaca8"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jdk"
|
||||
MAINTAINER="Arun Mascarenhas"
|
||||
EMAIL="arunmascarenhas@yahoo.com"
|
2
development/gradle/gradle.sh
Normal file
2
development/gradle/gradle.sh
Normal file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
export GRADLE_HOME=/usr/share/gradle
|
19
development/gradle/slack-desc
Normal file
19
development/gradle/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------------------------------------------------------|
|
||||
gradle: gradle (Build Automation)
|
||||
gradle: Gradle is build automation evolved. Gradle can automate the building,
|
||||
gradle: testing, publishing, deployment and more of software packages or
|
||||
gradle: other types of projects such as generated static websites, generated
|
||||
gradle: documentation or indeed anything else.
|
||||
gradle:
|
||||
gradle:
|
||||
gradle: Homepage: http://www.gradle.org/
|
||||
gradle:
|
||||
gradle:
|
||||
gradle:
|
Loading…
Reference in a new issue