From 96576b1a433721d49eb9052aae268ee04ab633a8 Mon Sep 17 00:00:00 2001 From: Enrico Tassi Date: Thu, 14 Mar 2013 19:27:26 +0100 Subject: [PATCH] first version of the package --- debian/acc.docs | 1 + debian/acc.install | 1 + debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 12 ++++++++++++ debian/copyright | 1 + debian/rules | 17 +++++++++++++++++ debian/source/format | 1 + 8 files changed, 39 insertions(+) create mode 100644 debian/acc.docs create mode 100644 debian/acc.install create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/acc.docs b/debian/acc.docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/acc.docs @@ -0,0 +1 @@ +README diff --git a/debian/acc.install b/debian/acc.install new file mode 100644 index 0000000..61199c9 --- /dev/null +++ b/debian/acc.install @@ -0,0 +1 @@ +usr/bin/acc diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f140b6c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +acc (0.2-1) UNRELEASED; urgency=low + + * Initial release. (Closes: #XXXXXX) + + -- CSC Thu, 14 Mar 2013 19:07:47 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d309dc1 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: acc +Section: devel +Priority: optional +Maintainer: CSC +Build-Depends: debhelper (>= 9), ocaml-best-compilers, ocaml-findlib +Standards-Version: 3.9.3 + +Package: acc +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: fill me + fill me diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..bbd36ad --- /dev/null +++ b/debian/copyright @@ -0,0 +1 @@ +fill me diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e753af9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,17 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_configure: + ./configure --without-webapp --prefix=/usr/ + +override_dh_auto_install: + $(MAKE) install PREFIX=debian/tmp/usr/ + +override_dh_auto_clean: + $(MAKE) clean + rm -rf Makefile.variables _tags lib/ src/common/intValueConfig.ml + +override_dh_auto_test: + # no test diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) -- 2.39.2