diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2012-09-16 12:30:22 +0200 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-09-16 19:44:42 -0400 |
commit | aa1f82bec5bc8594fa33f5b074af076402e0ffaf (patch) | |
tree | 2cd8b33ed43e04f31074522ed134035fa3a066a5 /libraries/cln/cln.SlackBuild | |
parent | bc667d563855e5f521ae41074bc8497a0769f9a4 (diff) | |
download | slackbuilds-aa1f82bec5bc8594fa33f5b074af076402e0ffaf.tar.gz |
libraries/cln: Updated for version 1.3.2.
Added also a couple of patches from git
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/cln/cln.SlackBuild')
-rw-r--r-- | libraries/cln/cln.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libraries/cln/cln.SlackBuild b/libraries/cln/cln.SlackBuild index da084fae66..d387d616a6 100644 --- a/libraries/cln/cln.SlackBuild +++ b/libraries/cln/cln.SlackBuild @@ -22,7 +22,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=cln -VERSION=1.3.1 +VERSION=1.3.2 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -61,11 +61,16 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . +# Apply some patches from git +for i in $CWD/patches/* ; do patch -p1 < $i ; done + +autoreconf -i + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |