This commit is contained in:
Artem Prilutskiy 2016-11-02 15:31:25 +03:00
parent b83a1da5ce
commit 127db9d89d
6 changed files with 38 additions and 0 deletions

15
UpdateLog.sh Executable file
View file

@ -0,0 +1,15 @@
#!/bin/bash
FILE=$(mktemp)
VERSION=$(grep -o -E "[0-9]+" Version.h)
DATE=$(date +"%a, %d %b %Y %H:%M:%S %z")
echo "tellusagent (${VERSION}) none; urgency=low" >> ${FILE}
echo >> ${FILE}
echo " * Daily build" >> ${FILE}
echo >> ${FILE}
echo " -- Artem Prilutskiy <cyanide.burnout@gmail.com> ${DATE}" >> ${FILE}
echo >> ${FILE}
# test -f debian/changelog && cat debian/changelog >> ${FILE}
mv ${FILE} debian/changelog

1
debian/compat vendored Normal file
View file

@ -0,0 +1 @@
7

1
debian/conffiles vendored Normal file
View file

@ -0,0 +1 @@
/opt/TellusAgent/tellusagent.conf

12
debian/control vendored Normal file
View file

@ -0,0 +1,12 @@
Source: tellusagent
Section: unknown
Priority: extra
Maintainer: Artem Prilutskiy <cyanide.burnout@gmail.com>
Build-Depends:
debhelper (>= 5)
Standards-Version: 3.8.4
Package: cronosagent
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: TellusAgent for BrandMeister DMR Master Server

2
debian/copyright vendored Normal file
View file

@ -0,0 +1,2 @@
Copyright: (c) 2016 Artem Prilutskiy

7
debian/rules vendored Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/make -f
#export DH_VERBOSE=1
export DH_OPTIONS
%:
dh $@