]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/sysbench
Sync next with master
[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)_MD5 = 756381c6fc4e16af1e0831b5e6a3dcb3
38
39 install : $(TARGET)
40
41 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
42
43 download :$(patsubst %,$(DIR_DL)/%,$(objects))
44
45 md5 : $(subst %,%_MD5,$(objects))
46
47 dist:
48 @$(PAK)
49
50 ###############################################################################
51 # Downloading, checking, md5sum
52 ###############################################################################
53
54 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
55 @$(CHECK)
56
57 $(patsubst %,$(DIR_DL)/%,$(objects)) :
58 @$(LOAD)
59
60 $(subst %,%_MD5,$(objects)) :
61 @$(MD5)
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)