diff options
author | Michales Michaloudes <korgie@gmail.com> | 2012-09-10 10:58:31 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-10 16:35:36 -0500 |
commit | f7a24d0999a7eae2316e94ea4b8de7cb9cf2f9b5 (patch) | |
tree | cc5f4dd3e95cd3c7112e2405c9ded8f4750461f3 /libraries/libsynce | |
parent | ef1142720ee59e5c2bc7091abded18eb70047852 (diff) | |
download | slackbuilds-f7a24d0999a7eae2316e94ea4b8de7cb9cf2f9b5.tar.gz |
libraries/libsynce: Disabled HAL support.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/libsynce')
-rw-r--r-- | libraries/libsynce/libsynce.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libraries/libsynce/libsynce.SlackBuild b/libraries/libsynce/libsynce.SlackBuild index 75c9285a81..d42fc221e0 100644 --- a/libraries/libsynce/libsynce.SlackBuild +++ b/libraries/libsynce/libsynce.SlackBuild @@ -4,7 +4,7 @@ PRGNAM=libsynce VERSION=${VERSION:-0.13} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: @@ -61,6 +61,7 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-hal-support \ --build=$ARCH-slackware-linux make @@ -69,10 +70,8 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +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 \ |