]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/sysbench
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / lfs / sysbench
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
4 ###############################################################################
5
6 ###############################################################################
7 # Definitions
8 ###############################################################################
9
10 include Config
11
12 SUMMARY = A MySQL benchmarking tool
13
14 VER = 1.0.20
15
16 THISAPP = sysbench-$(VER)
17 DL_FILE = $(THISAPP).tar.gz
18 DL_FROM = $(URL_IPFIRE)
19 DIR_APP = $(DIR_SRC)/$(THISAPP)
20 TARGET = $(DIR_INFO)/$(THISAPP)
21 SUP_ARCH = x86_64 aarch64
22 PROG = sysbench
23 PAK_VER = 2
24
25 DEPS =
26
27 SERVICES =
28
29 ###############################################################################
30 # Top-level Rules
31 ###############################################################################
32
33 objects = $(DL_FILE)
34
35 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
36
37 $(DL_FILE)_BLAKE2 = 9b63c1c2703fc2311e03561c8dde2c39b249b6aadffebddfd99cdcfb5319606a484132e9dcb23a4365aecfc1148c5c5c56c918ac8c363ffcb1beece26aaf15c7
38
39 install : $(TARGET)
40
41 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
42
43 download :$(patsubst %,$(DIR_DL)/%,$(objects))
44
45 b2 : $(subst %,%_BLAKE2,$(objects))
46
47 dist:
48 @$(PAK)
49
50 ###############################################################################
51 # Downloading, checking, b2sum
52 ###############################################################################
53
54 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
55 @$(CHECK)
56
57 $(patsubst %,$(DIR_DL)/%,$(objects)) :
58 @$(LOAD)
59
60 $(subst %,%_BLAKE2,$(objects)) :
61 @$(B2SUM)
62
63 ###############################################################################
64 # Installation Details
65 ###############################################################################
66
67 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
68 @$(PREBUILD)
69 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
70 cd $(DIR_APP) && touch AUTHORS NEWS
71 cd $(DIR_APP) && autoreconf -vfi
72 cd $(DIR_APP) && ./configure --prefix=/usr --without-mysql
73 cd $(DIR_APP) && make $(MAKETUNING)
74 cd $(DIR_APP) && make install
75 rm -rvf /usr/share/doc/sysbench
76 @rm -rf $(DIR_APP)
77 @$(POSTBUILD)