代码拉取完成,页面将自动刷新
#!/bin/bash
set -e
# Use half of CPU cores
np=$(( $(nproc) / 2 ))
without_capstone=
nodebuginfo=
__usage__() {
echo -e "
--without-capstone build without capstone
--nodebuginfo skip debuginfo and debugsource packages
-h, --help print this info
"
exit ${1-0}
}
TEMP=$( getopt --options h \
--long help \
--long without-capstone \
--long nodebuginfo \
--name rpmbuild-ulpatch -- "$@" )
test $? != 0 && __usage__ 1
eval set -- "${TEMP}"
while true ; do
case $1 in
-h | --help)
shift
__usage__
;;
--without-capstone)
shift
without_capstone=YES
;;
--nodebuginfo)
shift
nodebuginfo=YES
;;
--)
shift
break
;;
esac
done
rpmbuild -ba \
--define "_topdir $PWD" \
--define "_sourcedir $PWD" \
--define "_smp_mflags -j${np}" \
${without_capstone:+--without capstone} \
${nodebuginfo:+--nodebuginfo} \
ulpatch.spec
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。