wok-6.x rev 21616
lucene++ : patch
author | maniac |
---|---|
date | Thu May 23 22:39:27 2019 +0300 (2019-05-23) |
parents | 3226cca667d3 |
children | 19c807b8986a |
files | guvcview/receipt lucene++/receipt opencv/receipt |
line diff
1.1 --- a/guvcview/receipt Thu May 23 22:07:21 2019 +0300 1.2 +++ b/guvcview/receipt Thu May 23 22:39:27 2019 +0300 1.3 @@ -11,8 +11,8 @@ 1.4 TARBALL="$SOURCE-$VERSION.tar.gz" 1.5 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.6 1.7 -DEPENDS="gtk+3 portaudio ffmpeg libsdl libv4l libgudev libusb" 1.8 -BUILD_DEPENDS="gtk+3-dev portaudio-dev ffmpeg-dev libsdl-dev libv4l-dev \ 1.9 +DEPENDS="gtk+3 portaudio ffmpeg libsdl2 libv4l libgudev libusb" 1.10 +BUILD_DEPENDS="gtk+3-dev portaudio-dev ffmpeg-dev libsdl2-dev libv4l-dev \ 1.11 libgudev-dev libusb-dev" 1.12 1.13 # Rules to configure and make the package.
2.1 --- a/lucene++/receipt Thu May 23 22:07:21 2019 +0300 2.2 +++ b/lucene++/receipt Thu May 23 22:39:27 2019 +0300 2.3 @@ -1,14 +1,16 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="lucene++" 2.7 -VERSION="3.0.7" 2.8 +VERSION="3.0.7+git" 2.9 +GITHASH="972c9cb37" 2.10 CATEGORY="utilities" 2.11 SHORT_DESC="C++ port of the Java Lucene library" 2.12 MAINTAINER="al.bobylev@gmail.com" 2.13 LICENSE="Apache" 2.14 WEB_SITE="https://github.com/luceneplusplus/LucenePlusPlus" 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WGET_URL="$WEB_SITE/archive/rel_$VERSION.tar.gz" 2.17 +#WGET_URL="$WEB_SITE/archive/rel_$VERSION.tar.gz" 2.18 +WGET_URL="$WEB_SITE/archive/$GITHASH.tar.gz" 2.19 2.20 DEPENDS="libboost-date-time libboost-filesystem libboost-iostreams \ 2.21 libboost-regex libboost-system libboost-thread libboost-chrono" 2.22 @@ -19,7 +21,9 @@ 2.23 compile_rules() 2.24 { 2.25 mkdir build; cd build 2.26 - cmake -DCMAKE_INSTALL_PREFIX=/usr .. && 2.27 + cmake .. -DCMAKE_INSTALL_PREFIX=/usr \ 2.28 + -DENABLE_CUSTOM_ALLOCATOR='FALSE' \ 2.29 + -DCMAKE_CXX_FLAGS='-DBOOST_VARIANT_USE_RELAXED_GET_BY_DEFAULT' 2.30 make && 2.31 make install 2.32 }
3.1 --- a/opencv/receipt Thu May 23 22:07:21 2019 +0300 3.2 +++ b/opencv/receipt Thu May 23 22:39:27 2019 +0300 3.3 @@ -17,7 +17,8 @@ 3.4 # Rules to configure and make the package. 3.5 compile_rules() 3.6 { 3.7 - cmake . -DCMAKE_INSTALL_PREFIX=/usr && 3.8 + mkdir build; cd build 3.9 + cmake .. -DCMAKE_INSTALL_PREFIX=/usr && 3.10 make && 3.11 make DESTDIR=$DESTDIR install 3.12 }