mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
- remove init.d script - strip down installation of hal, we actually only need the libs for building xbmc
16 lines
387 B
Bash
Executable File
16 lines
387 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/install expat
|
|
$SCRIPTS/install glib
|
|
$SCRIPTS/install udev
|
|
$SCRIPTS/install dbus
|
|
$SCRIPTS/install dbus-glib
|
|
$SCRIPTS/install util-linux-ng
|
|
|
|
mkdir -p $INSTALL/usr/lib
|
|
cp -PR $PKG_BUILD/libhal/.libs/libhal.so* $INSTALL/usr/lib
|
|
cp -PR $PKG_BUILD/libhal-storage/.libs/libhal-storage.so* $INSTALL/usr/lib
|
|
rm -rf $INSTALL/usr/lib/libhal-storage.so*T
|