git-lfs/debian/rules

55 lines
1.9 KiB
Plaintext
Raw Normal View History

#!/usr/bin/make -f
export DH_OPTIONS
export GO15VENDOREXPERIMENT=1
#dh_golang doesn't do this for you
2015-07-26 17:02:57 +00:00
ifeq ($(DEB_HOST_ARCH), i386)
export GOARCH := 386
2015-07-26 17:02:57 +00:00
else ifeq ($(DEB_HOST_ARCH), amd64)
export GOARCH := amd64
endif
BUILD_DIR := obj-$(DEB_HOST_GNU_TYPE)
export DH_GOPKG := github.com/github/git-lfs
# DH_GOLANG_EXCLUDES typically incorporates vendor exclusions from script/test
2016-07-27 13:49:23 +00:00
export DH_GOLANG_EXCLUDES := test github.com/olekukonko/ts/* github.com/xeipuuv/* github.com/technoweenie/go-contentaddressable/* github.com/spf13/cobra/* github.com/kr/*
export PATH := $(CURDIR)/$(BUILD_DIR)/bin:$(PATH)
2016-07-27 13:49:23 +00:00
# by-default, dh_golang only copies *.go and other source - this upsets a bunch of vendor test routines
export DH_GOLANG_INSTALL_ALL := 1
%:
dh $@ --buildsystem=golang --with=golang
override_dh_clean:
rm -f debian/debhelper.log
rm -rf man
dh_clean
override_dh_auto_build:
dh_auto_build
#dh_golang doesn't do anything here in deb 8, and it's needed in both
2015-07-26 17:02:57 +00:00
if [ "$(DEB_HOST_GNU_TYPE)" != "$(DEB_BUILD_GNU_TYPE)" ]; then\
cp -rf $(BUILD_DIR)/bin/*/* $(BUILD_DIR)/bin/; \
cp -rf $(BUILD_DIR)/pkg/*/* $(BUILD_DIR)/pkg/; \
fi
rm $(BUILD_DIR)/bin/script
2016-02-25 05:04:55 +00:00
rm $(BUILD_DIR)/bin/man
./script/man
override_dh_strip:
# strip disabled as golang upstream doesn't support it and it makes go
# crash. See https://launchpad.net/bugs/1200255.
override_dh_auto_install:
mkdir -p debian/git-lfs/usr/bin
cp $(BUILD_DIR)/bin/git-lfs debian/git-lfs/usr/bin/
override_dh_auto_test:
ln -s ../../../../../../commands/repos $(BUILD_DIR)/src/github.com/github/git-lfs/commands/repos
ln -s ../../../../bin $(BUILD_DIR)/src/github.com/github/git-lfs/bin
#dh_golang uses the wrong dir to test on. This tricks everything into being happy
DEB_BUILD_GNU_TYPE=$(DEB_HOST_GNU_TYPE) dh_auto_test
rm $(BUILD_DIR)/src/github.com/github/git-lfs/commands/repos $(BUILD_DIR)/src/github.com/github/git-lfs/bin