mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
sysbench: New package.
A tool for performance benchmarks.
This commit is contained in:
1
config/rootfiles/packages/sysbench
Normal file
1
config/rootfiles/packages/sysbench
Normal file
@@ -0,0 +1 @@
|
|||||||
|
usr/bin/sysbench
|
||||||
72
lfs/sysbench
Normal file
72
lfs/sysbench
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
###############################################################################
|
||||||
|
# IPFire.org - An Open Source Firewall Solution #
|
||||||
|
# Copyright (C) - IPFire Development Team <info@ipfire.org> #
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Definitions
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
include Config
|
||||||
|
|
||||||
|
VER = 0.4.12
|
||||||
|
|
||||||
|
THISAPP = sysbench-$(VER)
|
||||||
|
DL_FILE = $(THISAPP).tar.gz
|
||||||
|
DL_FROM = $(URL_IPFIRE)
|
||||||
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||||
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
|
PROG = sysbench
|
||||||
|
PAK_VER = 1
|
||||||
|
|
||||||
|
DEPS = ""
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Top-level Rules
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
objects = $(DL_FILE)
|
||||||
|
|
||||||
|
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||||
|
|
||||||
|
$(DL_FILE)_MD5 = 3a6d54fdd3fe002328e4458206392b9d
|
||||||
|
|
||||||
|
install : $(TARGET)
|
||||||
|
|
||||||
|
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||||
|
|
||||||
|
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||||
|
|
||||||
|
md5 : $(subst %,%_MD5,$(objects))
|
||||||
|
|
||||||
|
dist:
|
||||||
|
@$(PAK)
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Downloading, checking, md5sum
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||||
|
@$(CHECK)
|
||||||
|
|
||||||
|
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||||
|
@$(LOAD)
|
||||||
|
|
||||||
|
$(subst %,%_MD5,$(objects)) :
|
||||||
|
@$(MD5)
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Installation Details
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||||
|
@$(PREBUILD)
|
||||||
|
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
|
||||||
|
cd $(DIR_APP) && touch AUTHORS NEWS
|
||||||
|
cd $(DIR_APP) && autoreconf -vfi
|
||||||
|
cd $(DIR_APP) && ./configure --prefix=/usr --without-mysql
|
||||||
|
cd $(DIR_APP) && make $(MAKETUNING)
|
||||||
|
cd $(DIR_APP) && make install
|
||||||
|
rm -rvf /usr/share/doc/sysbench
|
||||||
|
@rm -rf $(DIR_APP)
|
||||||
|
@$(POSTBUILD)
|
||||||
1
make.sh
1
make.sh
@@ -764,6 +764,7 @@ buildipfire() {
|
|||||||
ipfiremake avahi
|
ipfiremake avahi
|
||||||
ipfiremake nginx
|
ipfiremake nginx
|
||||||
ipfiremake sendEmail
|
ipfiremake sendEmail
|
||||||
|
ipfiremake sysbench
|
||||||
echo Build on $HOSTNAME > $BASEDIR/build/var/ipfire/firebuild
|
echo Build on $HOSTNAME > $BASEDIR/build/var/ipfire/firebuild
|
||||||
cat /proc/version >> $BASEDIR/build/var/ipfire/firebuild
|
cat /proc/version >> $BASEDIR/build/var/ipfire/firebuild
|
||||||
echo >> $BASEDIR/build/var/ipfire/firebuild
|
echo >> $BASEDIR/build/var/ipfire/firebuild
|
||||||
|
|||||||
Reference in New Issue
Block a user