blob: 215e92365205ab00d4a4a5eb30767e2247ad1034 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/usr/bin/make
PKG = botan
SRC = https://github.com/randombit/$(PKG).git
REV = 2.8.0
NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
# the first two are necessary due to LD, the others to reduce the build time
CONFIG_OPTS = \
--without-os-features=threads \
--disable-modules=locking_allocator \
--disable-modules=pkcs11,tls,x509,xmss \
all: install
.$(PKG)-cloned:
[ -d $(PKG) ] || git clone $(SRC) $(PKG)
@touch $@
.$(PKG)-checkout-$(REV): .$(PKG)-cloned
cd $(PKG) && git fetch && git checkout $(REV)
@touch $@
.$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)
cd $(PKG) && python ./configure.py $(CONFIG_OPTS) && make -j $(NUM_CPUS)
@touch $@
install: .$(PKG)-built-$(REV)
cd $(PKG) && make install && ldconfig
|