wok-current rev 8539
Fix: wxWidgets to install contrib files into same DESTDIR now. This will save 600mb since we will not need the source folder anymore to genpkg files.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Feb 13 04:28:50 2011 +0000 (2011-02-13) |
parents | 60fac07eb6a5 |
children | f28dd552c0d4 |
files | wxWidgets-dev/receipt wxWidgets/receipt |
line diff
1.1 --- a/wxWidgets-dev/receipt Sun Feb 13 04:25:50 2011 +0000 1.2 +++ b/wxWidgets-dev/receipt Sun Feb 13 04:28:50 2011 +0000 1.3 @@ -18,5 +18,4 @@ 1.4 cp -a $_pkg/usr/include/ $fs/usr 1.5 # Just copy setup.h and contrib include 1.6 cp -a $_pkg/usr/lib/wx/include $fs/usr/lib/wx 1.7 - cp -a $src/contrib/_pkg/usr/include/ $fs/usr 1.8 }
2.1 --- a/wxWidgets/receipt Sun Feb 13 04:25:50 2011 +0000 2.2 +++ b/wxWidgets/receipt Sun Feb 13 04:28:50 2011 +0000 2.3 @@ -21,17 +21,13 @@ 2.4 { 2.5 cd $src 2.6 ./configure \ 2.7 - --prefix=/usr \ 2.8 --enable-shared \ 2.9 - --enable-unicode \ 2.10 - --infodir=/usr/share/info \ 2.11 - --mandir=/usr/share/man \ 2.12 - $CONFIGURE_ARGS && 2.13 - make -j 4 && 2.14 - make DESTDIR=$src/_pkg install && 2.15 + --enable-unicode && 2.16 + make && 2.17 + make DESTDIR=$DESTDIR install && 2.18 cd $src/contrib && 2.19 - make -j 4 && 2.20 - make DESTDIR=$src/contrib/_pkg install 2.21 + make && 2.22 + make DESTDIR=$DESTDIR install 2.23 } 2.24 2.25 # Rules to gen a SliTaz package suitable for Tazpkg. 2.26 @@ -40,7 +36,6 @@ 2.27 mkdir -p $fs/usr 2.28 # Copy libs and contrib libs. 2.29 cp -a $_pkg/usr/lib/ $fs/usr/ 2.30 - cp -a $src/contrib/_pkg/usr/lib/ $fs/usr/ 2.31 # Remove devel files. 2.32 rm -rf $fs/usr/lib/wx/include 2.33 }