parent
8076d65982
commit
cd61ad584a
@ -0,0 +1,5 @@
|
|||||||
|
dvmhost (1.0.0-1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- MAINTAINER <gatekeep@deb-lx-fuel> Fri, 11 May 2018 09:13:00 -0400
|
||||||
@ -0,0 +1 @@
|
|||||||
|
10
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
Source: dvmhost
|
||||||
|
Maintainer: Bryan Biedenkapp <gatekeep@deb-lx-fuel>
|
||||||
|
Section: misc
|
||||||
|
Priority: optional
|
||||||
|
Standards-Version: 3.9.2
|
||||||
|
Build-Depends: debhelper (>= 9)
|
||||||
|
|
||||||
|
Package: dvmhost
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: Digital Voice Modem Host
|
||||||
@ -0,0 +1 @@
|
|||||||
|
DVMProject Developers
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
install_root = /opt
|
||||||
|
build_root = $$(pwd)/debian/dvmhost
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@ --with=systemd
|
||||||
|
|
||||||
|
override_dh_installinit:
|
||||||
|
dh_systemd_enable -pdvmhost --name=dvmhost linux/dvmhost.service
|
||||||
|
dh_installinit -pdvmhost --no-start --noscripts
|
||||||
|
dh_systemd_start -pdvmhost --no-restart-on-upgrade
|
||||||
|
|
||||||
|
override_dh_systemd_start:
|
||||||
|
echo "Not running dh_systemd_start"
|
||||||
|
|
||||||
|
override_dh_auto_install:
|
||||||
|
dh_auto_install
|
||||||
|
mkdir -p $(build_root)/opt/dvm || true
|
||||||
|
mkdir -p $(build_root)/opt/dvm/bin || true
|
||||||
|
mkdir -p $(build_root)/opt/dvm/log || true
|
||||||
|
cp -Rv $(install_root)/dvm $(build_root)/opt
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
tar-ignore = ".vscode"
|
||||||
|
tar-ignore = ".git"
|
||||||
|
tar-ignore = ".gitignore"
|
||||||
|
tar-ignore = ".gitattributes"
|
||||||
Loading…
Reference in new issue