Browse Source

Removing static library from yajl, libev and xcb-util-xrm

master
mid-kid 8 years ago
parent
commit
6c490f6cb6
  1. 2
      satellites/libev.sat
  2. 6
      satellites/python3-qt5.sat
  3. 2
      satellites/xcb-util-xrm.sat
  4. 4
      satellites/yajl.sat

2
satellites/libev.sat

@ -13,6 +13,6 @@ cd "$name-$version"
# Don't install the libevent compatibility header, as it conflicts with the actual libevent. # Don't install the libevent compatibility header, as it conflicts with the actual libevent.
sed -i -e '/include_HEADERS/s/event.h//' Makefile.in sed -i -e '/include_HEADERS/s/event.h//' Makefile.in
compile_configure compile_configure -- --disable-static
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: # vim:set tabstop=4 shiftwidth=4 syntax=sh et:

6
satellites/python3-qt5.sat

@ -10,7 +10,11 @@ dlextract "http://sourceforge.net/projects/pyqt/files/$name/PyQt-$version/${name
header_end header_end
cd "${name}_gpl-$version" cd "${name}_gpl-$version"
python3 configure.py --qmake "$(command -v "$(compile_qt_get_cmd qmake 5)")" --confirm-license
qmake="$(command -v "$(compile_qt_get_cmd qmake 5)")" || echo "Missing qmake for Qt5"
[ "$qmake" ]
python3 configure.py --qmake "$qmake" --confirm-license
make make
make DESTDIR="$dir_install" INSTALL_ROOT="$dir_install" install make DESTDIR="$dir_install" INSTALL_ROOT="$dir_install" install

2
satellites/xcb-util-xrm.sat

@ -9,6 +9,6 @@ dlextract "https://github.com/Airblader/$name/releases/download/v$version/$name-
header_end header_end
cd "$name-$version" cd "$name-$version"
compile_configure compile_configure -- --disable-static
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: # vim:set tabstop=4 shiftwidth=4 syntax=sh et:

4
satellites/yajl.sat

@ -11,6 +11,10 @@ header_end
cd "$name-$version" cd "$name-$version"
# Don't build the static library
sed -i -e '/yajl_s/d' \
-e '/COMMAND ${CMAKE_COMMAND}/d' src/CMakeLists.txt
# Fix install dirs # Fix install dirs
sed -i -e "s/lib\${LIB_SUFFIX}/$(safe_sed "$dir_libdir")/" \ sed -i -e "s/lib\${LIB_SUFFIX}/$(safe_sed "$dir_libdir")/" \
-e "/INSTALL(/s/share/$(safe_sed "$dir_datadir")/" src/CMakeLists.txt -e "/INSTALL(/s/share/$(safe_sed "$dir_datadir")/" src/CMakeLists.txt

Loading…
Cancel
Save