2021-08-18 11:57:06 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
export DEB_VERSION=$(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ')
|
|
|
|
export BUILD_VERSION=v${DEB_VERSION}-debian-pragmatic
|
|
|
|
export GO111MODULE=on
|
|
|
|
|
|
|
|
# LD_OPTS=-ldflags "-s -w -X github.com/crowdsecurity/crowdsec/pkg/cwversion.Version=$(BUILD_VERSION) \
|
|
|
|
# -X github.com/crowdsecurity/crowdsec/pkg/cwversion.BuildDate=$(BUILD_TIMESTAMP) \
|
|
|
|
# -X github.com/crowdsecurity/crowdsec/pkg/cwversion.Codename=$(BUILD_CODENAME) \
|
|
|
|
# -X github.com/crowdsecurity/crowdsec/pkg/cwversion.Tag=$(BUILD_TAG) \
|
|
|
|
# -X github.com/crowdsecurity/crowdsec/pkg/cwversion.GoVersion=$(BUILD_GOVERSION)"
|
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|
|
|
|
|
|
|
|
override_dh_auto_clean:
|
|
|
|
override_dh_auto_test:
|
|
|
|
override_dh_auto_build:
|
|
|
|
override_dh_auto_install:
|
|
|
|
# mkdir /tmp/go
|
|
|
|
# echo $(go version)
|
|
|
|
# echo $($GOCMD version)
|
|
|
|
# cd cmd/crowdsec && GOROOT=/tmp/go GO111MODULE=on $(GOBUILD) $(LD_OPTS) -o $(CROWDSEC_BIN) -v && cd ..
|
|
|
|
# cd cmd/crowdsec-cli && GOROOT=/tmp/go GO111MODULE=on $(GOBUILD) $(LD_OPTS) -o cscli -v && cd ..
|
|
|
|
make
|
|
|
|
mkdir -p debian/crowdsec/usr/bin
|
|
|
|
mkdir -p debian/crowdsec/etc/crowdsec
|
|
|
|
mkdir -p debian/crowdsec/usr/share/crowdsec
|
|
|
|
mkdir -p debian/crowdsec/etc/crowdsec/hub/
|
|
|
|
mkdir -p debian/crowdsec/usr/share/crowdsec/config
|
2021-08-25 09:43:29 +00:00
|
|
|
|
|
|
|
|
2021-09-07 15:18:55 +00:00
|
|
|
mkdir -p debian/crowdsec/usr/lib/crowdsec/plugins/
|
2021-08-25 09:43:29 +00:00
|
|
|
mkdir -p debian/crowdsec/etc/crowdsec/notifications/
|
|
|
|
|
2021-09-07 15:18:55 +00:00
|
|
|
install -m 551 plugins/notifications/slack/notification-slack debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
|
|
install -m 551 plugins/notifications/http/notification-http debian/crowdsec/usr/lib/crowdsec/plugins/
|
|
|
|
install -m 551 plugins/notifications/splunk/notification-splunk debian/crowdsec/usr/lib/crowdsec/plugins/
|
2021-08-25 09:43:29 +00:00
|
|
|
|
|
|
|
cp plugins/notifications/slack/slack.yaml debian/crowdsec/etc/crowdsec/notifications/
|
|
|
|
cp plugins/notifications/http/http.yaml debian/crowdsec/etc/crowdsec/notifications/
|
|
|
|
cp plugins/notifications/splunk/splunk.yaml debian/crowdsec/etc/crowdsec/notifications/
|
|
|
|
|
2021-08-18 11:57:06 +00:00
|
|
|
cp cmd/crowdsec/crowdsec debian/crowdsec/usr/bin
|
|
|
|
cp cmd/crowdsec-cli/cscli debian/crowdsec/usr/bin
|
|
|
|
cp wizard.sh debian/crowdsec/usr/share/crowdsec
|
2021-09-08 09:36:59 +00:00
|
|
|
cp config/config.yaml debian/crowdsec/etc/crowdsec/config.yaml
|
|
|
|
cp config/simulation.yaml debian/crowdsec/etc/crowdsec/simulation.yaml
|
|
|
|
cp config/profiles.yaml debian/crowdsec/etc/crowdsec/profiles.yaml
|
2022-01-13 15:46:16 +00:00
|
|
|
cp config/console_config.yaml debian/crowdsec/etc/crowdsec/console_config.yaml
|
2021-09-08 09:36:59 +00:00
|
|
|
cp -a config/patterns debian/crowdsec/etc/crowdsec
|