wok-next diff liburcu/receipt @ rev 20969

Micro-updates + { new clang + assaultcube (still broken)} + {new python modules from SliTaz Cooking + their depends}
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Sep 14 01:56:52 2018 +0300 (2018-09-14)
parents 5841522533ec
children d5aab818505e
line diff
     1.1 --- a/liburcu/receipt	Mon Apr 16 11:36:31 2018 +0300
     1.2 +++ b/liburcu/receipt	Fri Sep 14 01:56:52 2018 +0300
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="liburcu"
     1.7 -VERSION="0.10.0"
     1.8 +VERSION="0.10.1"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Userspace RCU (read-copy-update) library"
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12 @@ -14,15 +14,22 @@
    1.13  SPLIT="liburcu-dev"
    1.14  
    1.15  compile_rules() {
    1.16 -	./configure $CONFIGURE_ARGS &&
    1.17 +	./configure \
    1.18 +		--disable-static \
    1.19 +		$CONFIGURE_ARGS &&
    1.20  	fix libtool &&
    1.21  	make &&
    1.22 -	make DESTDIR=$DESTDIR install
    1.23 +	make install
    1.24  }
    1.25  
    1.26  genpkg_rules() {
    1.27  	case $PACKAGE in
    1.28 -		liburcu) copy @std;;
    1.29 -		*-dev)   copy @dev;;
    1.30 +		liburcu)
    1.31 +			copy @std
    1.32 +			;;
    1.33 +		*-dev)
    1.34 +			copy @dev
    1.35 +			rm -r $fs/usr/share/ # Makefiles in doc/
    1.36 +			;;
    1.37  	esac
    1.38  }