mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
32 lines
614 B
Bash
Executable File
32 lines
614 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/build Python
|
|
$SCRIPTS/build pygtk
|
|
$SCRIPTS/build pygobject
|
|
$SCRIPTS/build gstreamer
|
|
$SCRIPTS/build gst-plugins-base
|
|
|
|
. config/options.python
|
|
|
|
cd $PKG_BUILD
|
|
|
|
ac_cv_path_PYGTK_CODEGEN=`ls -d $ROOT/$BUILD/pygtk*/codegen/pygtk-codegen-2.0` \
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-static \
|
|
--enable-shared \
|
|
|
|
make
|
|
|
|
$STRIP gst/.libs/*.so
|
|
|
|
$MAKEINSTALL
|
|
|
|
$PYTHON -Wi -t $PYTHON_LIBDIR/compileall.py .
|