aboutsummaryrefslogtreecommitdiff
path: root/contrib/ls-config/debian/ls-config/DEBIAN
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ls-config/debian/ls-config/DEBIAN')
-rw-r--r--contrib/ls-config/debian/ls-config/DEBIAN/control12
-rw-r--r--contrib/ls-config/debian/ls-config/DEBIAN/md5sums2
-rwxr-xr-xcontrib/ls-config/debian/ls-config/DEBIAN/postinst39
3 files changed, 53 insertions, 0 deletions
diff --git a/contrib/ls-config/debian/ls-config/DEBIAN/control b/contrib/ls-config/debian/ls-config/DEBIAN/control
new file mode 100644
index 0000000..a931f92
--- /dev/null
+++ b/contrib/ls-config/debian/ls-config/DEBIAN/control
@@ -0,0 +1,12 @@
+Package: ls-config
+Version: 1.0.3
+Architecture: i386
+Maintainer: Ɓukasz A. Grabowski <www@lucas.net.pl>
+Installed-Size: 27
+Section: unknown
+Priority: extra
+Homepage: http://www.lucas.net.pl
+Description: Simple program allo use libconfig style conf in bash
+ This software allo to use libconfig9 style configuration files
+ in bash scripts by invoke this soft. It contain bash library too,
+ witch easying this job.
diff --git a/contrib/ls-config/debian/ls-config/DEBIAN/md5sums b/contrib/ls-config/debian/ls-config/DEBIAN/md5sums
new file mode 100644
index 0000000..9362fd5
--- /dev/null
+++ b/contrib/ls-config/debian/ls-config/DEBIAN/md5sums
@@ -0,0 +1,2 @@
+17ee68fa6924ad7f69ca91bee808281b usr/share/doc/ls-config/changelog.gz
+962fc567b180716388e62add5c6bfae5 usr/share/doc/ls-config/copyright
diff --git a/contrib/ls-config/debian/ls-config/DEBIAN/postinst b/contrib/ls-config/debian/ls-config/DEBIAN/postinst
new file mode 100755
index 0000000..9b2ee7b
--- /dev/null
+++ b/contrib/ls-config/debian/ls-config/DEBIAN/postinst
@@ -0,0 +1,39 @@
+#!/bin/sh
+# postinst script for ls-config
+#
+# see: dh_installdeb(1)
+
+set -e
+
+# summary of how this script can be called:
+# * <postinst> `configure' <most-recently-configured-version>
+# * <old-postinst> `abort-upgrade' <new version>
+# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+# <new-version>
+# * <postinst> `abort-remove'
+# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+# <failed-install-package> <version> `removing'
+# <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+ configure)
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+
+
+exit 0