diff options
author | Kibum Kim <kb0929.kim@samsung.com> | 2012-01-07 00:42:18 +0900 |
---|---|---|
committer | Kibum Kim <kb0929.kim@samsung.com> | 2012-01-07 00:42:18 +0900 |
commit | 11da635c79ea21765a50d28cf81ff6b51dddefa0 (patch) | |
tree | 3a4f7487c498d852459d54e3a302ca0c625b310c /debian | |
parent | f7d3bd8b3884553bbe42d6ece32974d3e26281ee (diff) | |
download | calendar-11da635c79ea21765a50d28cf81ff6b51dddefa0.tar.gz calendar-11da635c79ea21765a50d28cf81ff6b51dddefa0.tar.bz2 calendar-11da635c79ea21765a50d28cf81ff6b51dddefa0.zip |
Git init
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/README | 0 | ||||
-rwxr-xr-x | debian/capi-social-calendar-dev.install | 4 | ||||
-rwxr-xr-x | debian/capi-social-calendar-dev.postinst | 1 | ||||
-rwxr-xr-x | debian/capi-social-calendar.install | 1 | ||||
-rwxr-xr-x | debian/capi-social-calendar.postinst | 1 | ||||
-rw-r--r-- | debian/changelog | 21 | ||||
-rwxr-xr-x | debian/compat | 1 | ||||
-rwxr-xr-x | debian/control | 22 | ||||
-rwxr-xr-x | debian/rules | 65 |
9 files changed, 116 insertions, 0 deletions
diff --git a/debian/README b/debian/README new file mode 100755 index 0000000..e69de29 --- /dev/null +++ b/debian/README diff --git a/debian/capi-social-calendar-dev.install b/debian/capi-social-calendar-dev.install new file mode 100755 index 0000000..761a28b --- /dev/null +++ b/debian/capi-social-calendar-dev.install @@ -0,0 +1,4 @@ +/usr/include/* +/usr/include/*/* +/usr/lib/pkgconfig/*.pc + diff --git a/debian/capi-social-calendar-dev.postinst b/debian/capi-social-calendar-dev.postinst new file mode 100755 index 0000000..1a24852 --- /dev/null +++ b/debian/capi-social-calendar-dev.postinst @@ -0,0 +1 @@ +#!/bin/sh diff --git a/debian/capi-social-calendar.install b/debian/capi-social-calendar.install new file mode 100755 index 0000000..4a755a4 --- /dev/null +++ b/debian/capi-social-calendar.install @@ -0,0 +1 @@ +/usr/lib/lib*.so* diff --git a/debian/capi-social-calendar.postinst b/debian/capi-social-calendar.postinst new file mode 100755 index 0000000..1a24852 --- /dev/null +++ b/debian/capi-social-calendar.postinst @@ -0,0 +1 @@ +#!/bin/sh diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..65088d1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,21 @@ +capi-social-calendar (0.1.1-27) unstable; urgency=low + + * version updated + * Git: api/calendar + * Tag: capi-social-calendar_0.1.1-27 + + -- Jonghoon Lim <j.h.lim@samsung.com> Mon, 19 Dec 2011 14:52:01 +0900 + +capi-social-calendar (0.1.1-26) unstable; urgency=low + + * version updated + * Git: api/calendar + * Tag: capi-social-calendar_0.1.1-26 + + -- Jonghoon Lim <j.h.lim@samsung.com> Thu, 15 Dec 2011 13:43:07 +0900 + +capi-social-calendar (0.0.1-1) unstable; urgency=low + + * Initial release. + + -- Jonghoon Lim <j.h.lim@samsung.com> Wed, 07 Dec 2011 12:48:12 +0900 diff --git a/debian/compat b/debian/compat new file mode 100755 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100755 index 0000000..d462109 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ + +Source: capi-social-calendar +Section: libs +Priority: extra +Maintainer: Jongchul Park <jc0204.park@samsung.com>, Jonghoon Lim <j.h.lim@samsung.com> +Build-Depends: debhelper (>= 5), dlog-dev, libslp-calendar-dev, libglib2.0-dev, capi-base-common-dev, capi-social-contacts-dev + +Package: capi-social-calendar +Architecture: any +Depends: ${shilbs:Depends}, ${misc:Depends} +Description: Calendar library in Tizen Native API + +Package: capi-social-calendar-dev +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, capi-social-calendar (= ${Source-Version}), dlog-dev, libslp-calendar-dev, libglib2.0-dev, capi-base-common-dev, capi-social-contacts-dev +Description: Calendar library in Tizen Native API (DEV) + +Package: capi-social-calendar-dbg +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, capi-social-calendar (= ${Source-Version}) +Description: Calendar library in Tizen Native API (DBG) + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a463aa1 --- /dev/null +++ b/debian/rules @@ -0,0 +1,65 @@ +#!/usr/bin/make -f + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +CMAKE_ROOT_DIR ?= $(CURDIR) +CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp + +configure: configure-stamp +configure-stamp: + dh_testdir + mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && cmake .. + touch configure-stamp + + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + cd $(CMAKE_BUILD_DIR) && $(MAKE) + touch $@ + +clean: + cd $(CMAKE_ROOT_DIR) + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + rm -f + rm -rf $(CMAKE_BUILD_DIR) + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install --sourcedir=debian/tmp + dh_installman + dh_link + dh_strip --dbg-package=capi-social-calendar-dbg + 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 install configure + |