diff options
author | Steven King <kingrst@gmail.com> | 2013-12-02 09:03:36 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-12-02 00:57:39 -0600 |
commit | cb17338b87b0d35ad85701e2063d7949494b2c10 (patch) | |
tree | db7f228fe4114c95489be935115605720b6edc16 /libraries/log4c/log4c.SlackBuild | |
parent | 627123e8811f16fb806e8917f2db2afbf4c1b375 (diff) |
libraries/log4c: Updated for version 1.2.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/log4c/log4c.SlackBuild')
-rw-r--r-- | libraries/log4c/log4c.SlackBuild | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/libraries/log4c/log4c.SlackBuild b/libraries/log4c/log4c.SlackBuild index 0d0ab8f5b11f..3ab3478ef7bf 100644 --- a/libraries/log4c/log4c.SlackBuild +++ b/libraries/log4c/log4c.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=log4c -VERSION=${VERSION:-1.2.1} +VERSION=${VERSION:-1.2.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -62,13 +62,12 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/${PRGNAM}-$VERSION.tar.gz cd $PRGNAM-$VERSION - chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ CXFLAGS="$SLKCFLAGS" \ @@ -77,14 +76,18 @@ CXFLAGS="$SLKCFLAGS" \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --docdir=/usr/doc/$PRGNAM-$VERSION \ + --mandir=/usr/man \ --build=$ARCH-slackware-linux make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \ |