add service && debian package
This commit is contained in:
parent
ec62152429
commit
7afceda9cb
2 changed files with 28 additions and 0 deletions
17
GNUmakefile
17
GNUmakefile
|
@ -1,3 +1,20 @@
|
|||
VERSION = $(shell git describe --tags)
|
||||
BUILD_TMP?=.rpm_tmp
|
||||
|
||||
include common.mk
|
||||
|
||||
.PHONY: deb
|
||||
deb:
|
||||
rm -rf ${BUILD_TMP}
|
||||
mkdir -p ${BUILD_TMP}/usr/local/bin/
|
||||
mkdir -p ${BUILD_TMP}/var/lib/goircd/history
|
||||
mkdir -p ${BUILD_TMP}/etc/systemd/system/
|
||||
cp goircd ${BUILD_TMP}/usr/local/bin/
|
||||
cp startup/goircd.service ${BUILD_TMP}/etc/systemd/system/
|
||||
fpm -s dir -t deb -n goircd -v ${VERSION}\
|
||||
-m mengzhuo1203@gmail.com \
|
||||
--deb-compression=bzip2 \
|
||||
--verbose \
|
||||
-d logrotate\
|
||||
-C ${BUILD_TMP}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue