summaryrefslogtreecommitdiff
path: root/scripts/make_rpm
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/make_rpm')
-rwxr-xr-xscripts/make_rpm35
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/make_rpm b/scripts/make_rpm
new file mode 100755
index 000000000..be4d153fe
--- /dev/null
+++ b/scripts/make_rpm
@@ -0,0 +1,35 @@
+#!/bin/bash
+
+# install fpm
+# yum install ruby-devel gcc make rpm-build
+# gem install --no-ri --no-rdoc fpm
+
+# version
+version=2.1.3
+
+# arch
+arch=i386
+if [ `getconf LONG_BIT` == "64" ]; then
+ arch=x86_64
+fi
+
+# build xmake core
+cd ./core
+make f DEBUG=n
+make r
+cd -
+
+# make xmake wrapper
+echo "#/!bin/bash
+export XMAKE_PROGRAM_DIR=/usr/local/share/xmake
+/usr/local/share/xmake/xmake \"\$@\"
+" > /tmp/xmake.sh
+chmod 755 /tmp/xmake.sh
+
+# make dep package using fpm
+fpm -s dir -t rpm -n xmake -v $version -m "<[email protected]>" --description="A make-like build utility based on Lua" --license=LICENSE.md \
+ xmake=/usr/local/share/ \
+ core/bin/demo.pkg/bin/linux/$arch/demo.b=/usr/local/share/xmake/xmake \
+ /tmp/xmake.sh=/usr/local/bin/xmake
+
+