wok-next diff keepalived/receipt @ rev 20866

mono: fix build by not enabling Spectre mitigation
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jul 01 23:19:43 2018 +0300 (2018-07-01)
parents e6615350078d
children d5aab818505e
line diff
     1.1 --- a/keepalived/receipt	Wed Feb 28 16:28:07 2018 +0200
     1.2 +++ b/keepalived/receipt	Sun Jul 01 23:19:43 2018 +0300
     1.3 @@ -1,33 +1,25 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="keepalived"
     1.8  VERSION="1.2.15"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Routing software for loadbalancing and high-availability."
    1.11 +SHORT_DESC="Routing software for loadbalancing and high-availability"
    1.12  MAINTAINER="pascal.bellard@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 +WEB_SITE="http://www.keepalived.org/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WEB_SITE="http://www.keepalived.org/"
    1.18  WGET_URL="${WEB_SITE}software/$TARBALL"
    1.19  
    1.20 -DEPENDS="openssl libnl"
    1.21  BUILD_DEPENDS="openssl-dev glib libnl-dev"
    1.22  
    1.23 -# Rules to configure and make the package.
    1.24 -compile_rules()
    1.25 -{
    1.26 -	./configure --prefix=/usr \
    1.27 -		--sysconfdir=/etc \
    1.28 -		$CONFIGURE_ARGS &&
    1.29 +compile_rules() {
    1.30 +	./configure $CONFIGURE_ARGS &&
    1.31  	make &&
    1.32  	make DESTDIR=$DESTDIR 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
    1.39 -	cp -a $install/etc $fs/
    1.40 -	cp -a $install/usr/bin $fs/usr
    1.41 -	cp -a $install/usr/sbin $fs/usr
    1.42 +genpkg_rules() {
    1.43 +	copy @std
    1.44 +	DEPENDS="openssl libnl"
    1.45  }