wok diff libevent/receipt @ rev 12374

Up: libevent to 2.0.17.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 19 21:57:26 2012 +0000 (2012-04-19)
parents 5287b073ee95
children ae2eed4fb61e
line diff
     1.1 --- a/libevent/receipt	Wed Oct 12 14:15:04 2011 +0000
     1.2 +++ b/libevent/receipt	Thu Apr 19 21:57:26 2012 +0000
     1.3 @@ -1,13 +1,13 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libevent"
     1.7 -VERSION="2.0.13"
     1.8 +VERSION="2.0.17"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="An event notification library."
    1.11  MAINTAINER="0dddba11@googlemail.com"
    1.12  TARBALL="$PACKAGE-$VERSION-stable.tar.gz"
    1.13 -WEB_SITE="http://www.monkey.org/~provos/libevent/"
    1.14 -WGET_URL="http://www.monkey.org/~provos/$TARBALL"
    1.15 +WEB_SITE="http://libevent.org"
    1.16 +WGET_URL="https://github.com/downloads/$PACKAGE/$PACKAGE/$TARBALL"
    1.17  
    1.18  DEPENDS="openssl"
    1.19  BUILD_DEPENDS="openssl-dev"
    1.20 @@ -15,16 +15,16 @@
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24 -	[ -d $PACKAGE-$VERSION-stable ] && mv $PACKAGE-$VERSION-stable $PACKAGE-$VERSION
    1.25 -    cd $src
    1.26 -    ./configure --prefix=/usr \
    1.27 -    --mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.28 -    make && make install
    1.29 +	cd $src
    1.30 +	./configure \
    1.31 +		$CONFIGURE_ARGS &&
    1.32 +	make && make install
    1.33  }
    1.34  
    1.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.36  genpkg_rules()
    1.37  {
    1.38 -    mkdir -p $fs/usr/lib
    1.39 -    cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.40 +	mkdir -p $fs/usr/lib
    1.41 +	cp -a $install/usr/bin $fs/usr
    1.42 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.43  }