mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
28 lines
450 B
Bash
Executable File
28 lines
450 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/build Python
|
|
$SCRIPTS/build pigment
|
|
$SCRIPTS/build gst-python
|
|
|
|
. config/options.python
|
|
|
|
cd $PKG_BUILD
|
|
|
|
./configure --host=$TARGET_NAME \
|
|
--build=$HOST_NAME \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static \
|
|
--enable-shared \
|
|
|
|
make
|
|
|
|
$STRIP pgm/.libs/_pgm*.so
|
|
|
|
$MAKEINSTALL
|
|
|
|
$PYTHON -Wi -t $PYTHON_LIBDIR/compileall.py pgm
|