Some change for debian

master
Sergey Kalinin 2019-07-23 13:09:26 +03:00
parent 8fbe57ad9e
commit e58b643eb7
5 changed files with 69 additions and 0 deletions

1
debian/compat vendored 100644
View File

@ -0,0 +1 @@
7

17
debian/copyright vendored 100644
View File

@ -0,0 +1,17 @@
This package was debianized by the alien program by converting
a binary .rpm package on Mon, 17 Sep 2018 12:01:34 +0300
Copyright: GPL
Information from the binary package:
Name : rac_gui Relocations: (not relocatable)
Version : 1.0.1 Vendor: ALT Linux Team
Release : 1 Build Date: Пн 17 сен 2018 11:49:36
Install date: (not installed) Build Host: alt-ws.localdomain
Group : System Source RPM: rac_gui-1.0.1-1.src.rpm
Size : 233084 License: GPL
URL : https://bitbucket.org/svk28/rac-gui
Summary : 1C rac gui tool
Description :
Графический интерфейс к утилите управления кластером серверов 1С rac

2
debian/postinst vendored 100755
View File

@ -0,0 +1,2 @@
#!/bin/bash
update_menus_bin='/usr/bin/update-menus' && [ -x "$update_menus_bin" ] && "$update_menus_bin" ||:

2
debian/postrm vendored 100755
View File

@ -0,0 +1,2 @@
#!/bin/bash
update_menus_bin='/usr/bin/update-menus' && [ "$1" = 0 -a -x "$update_menus_bin" ] && "$update_menus_bin" ||:

47
debian/rules vendored 100755
View File

@ -0,0 +1,47 @@
#!/usr/bin/make -f
# debian/rules for alien
PACKAGE=$(shell dh_listpackages)
build:
dh_testdir
clean:
dh_testdir
dh_testroot
dh_clean -d
binary-indep: build
binary-arch: build
dh_testdir
dh_testroot
dh_prep
dh_installdirs
dh_installdocs
dh_installchangelogs
# Copy the packages's files.
find . -maxdepth 1 -mindepth 1 -not -name debian -print0 | \
xargs -0 -r -i cp -a {} debian/$(PACKAGE)
#
# If you need to move files around in debian/$(PACKAGE) or do some
# binary patching, do it here
#
# This has been known to break on some wacky binaries.
# dh_strip
dh_compress
# dh_fixperms
dh_makeshlibs
dh_installdeb
-dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary