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
|
#!/usr/bin/make -f
DEB_SETUP_BIN_NAME = cabal
DEB_CABAL_PACKAGE = artvaluereport
DEB_DEFAULT_COMPILER = ghc
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/hlibrary.mk
build/artvaluereport2-staging:: build-ghc-stamp
build/artvaluereport2-production:: build-ghc-stamp
build/artvaluereport2-development:: build-ghc-stamp
build/artvaluereport2-backups:: build-ghc-stamp
build/appraisalscope:: build-ghc-stamp
binary-fixup/artvaluereport2-staging::
install -Dps dist-ghc/build/artvaluereport2-server/artvaluereport2-server debian/artvaluereport2-staging/usr/bin/artvaluereport2-staging
binary-fixup/artvaluereport2-production::
install -Dps dist-ghc/build/artvaluereport2-server/artvaluereport2-server debian/artvaluereport2-production/usr/bin/artvaluereport2-production
binary-fixup/artvaluereport2-development::
install -Dps dist-ghc/build/artvaluereport2-server/artvaluereport2-server debian/artvaluereport2-development/usr/bin/artvaluereport2-development
|