mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
* anytermd: Added anyterm to extras. Included modifications on original anytermd project source code. Added a new spec file for centos/fedora/rhel. Tested on FC16/i386 and centos6/x86_84. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6257 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d build_arm ]
|
|
then
|
|
mkdir build_arm
|
|
cp build/Makefile build_arm/Makefile
|
|
fi
|
|
|
|
cd build_arm
|
|
|
|
CXX=arm-linux-gnu-g++ make \
|
|
PG_INC_FLAGS=-I/usr/arm-linux-gnu/include/postgresql/ \
|
|
DISABLE_RECODE=1 DISABLE_IMAGEMAGICK=1
|