]> git.ipfire.org Git - thirdparty/strongswan.git/blame - testing/scripts/recipes/006_tkm-rpc.mk
version bump to 5.2.1rc1
[thirdparty/strongswan.git] / testing / scripts / recipes / 006_tkm-rpc.mk
CommitLineData
b491ee4e
RB
1#!/usr/bin/make
2
3PKG = tkm-rpc
4SRC = http://git.codelabs.ch/git/$(PKG).git
5REV = v0.1
6
3db17b0c
RB
7PREFIX = /usr/local/ada
8
9export ADA_PROJECT_PATH=$(PREFIX)/lib/gnat
b491ee4e
RB
10
11all: install
12
13.$(PKG)-cloned:
14 git clone $(SRC) $(PKG)
15 cd $(PKG) && git checkout $(REV)
16 @touch $@
17
18.$(PKG)-built: .$(PKG)-cloned
9c2aba27 19 cd $(PKG) && make
b491ee4e
RB
20 @touch $@
21
22install: .$(PKG)-built
3db17b0c 23 cd $(PKG) && make PREFIX=$(PREFIX) install