diff options
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/README | 0 | ||||
-rwxr-xr-x | debian/capi-base-common-dev.install | 3 | ||||
-rwxr-xr-x | debian/changelog | 37 | ||||
-rwxr-xr-x | debian/compat | 1 | ||||
-rwxr-xr-x | debian/control | 11 | ||||
-rwxr-xr-x | debian/rules | 64 |
6 files changed, 0 insertions, 116 deletions
diff --git a/debian/README b/debian/README deleted file mode 100755 index e69de29..0000000 --- a/debian/README +++ /dev/null diff --git a/debian/capi-base-common-dev.install b/debian/capi-base-common-dev.install deleted file mode 100755 index e9ca4da..0000000 --- a/debian/capi-base-common-dev.install +++ /dev/null @@ -1,3 +0,0 @@ -/usr/include/* -/usr/lib/pkgconfig/*.pc - diff --git a/debian/changelog b/debian/changelog deleted file mode 100755 index 4b9a5d2..0000000 --- a/debian/changelog +++ /dev/null @@ -1,37 +0,0 @@ -capi-base-common (0.1.0-7) unstable; urgency=low - - * Add TIZEN_ERROR_DRM_CLASS - * Git: api/common - * Tag: capi-base-common_0.1.0-7 - - -- WonYoung Choi <wy80.choi@samsung.com> Mon, 19 Mar 2012 19:05:23 +0900 - -capi-base-common (0.1.0-6) unstable; urgency=low - - * Add TIZEN_ERROR_NO_DATA - * Git: api/common - * Tag: capi-base-common_0.1.0-6 - - -- WonYoung Choi <wy80.choi@samsung.com> Mon, 27 Feb 2012 15:55:33 +0900 - -capi-base-common (0.1.0-5) unstable; urgency=low - - * Add TIZEN_ERROR_WEB_CLASS - * Git: api/common - * Tag: capi-base-common_0.1.0-5 - - -- Junghyuk Park <junghyuk.park@samsung.com> Thu, 02 Feb 2012 17:43:07 +0900 - -capi-base-common (0.1.0-4) unstable; urgency=low - - * Added AD error class - * Git: api/common - * Tag: capi-base-common_0.1.0-4 - - -- Junghyuk Park <junghyuk.park@samsung.com> Mon, 30 Jan 2012 14:00:33 +0900 - -capi-base-common (0.1.0-3) unstable; urgency=low - - * Initial release. - - -- Woongsuk Cho <ws77.cho@samsung.com> Wed, 07 Dec 2011 05:38:55 +0300 diff --git a/debian/compat b/debian/compat deleted file mode 100755 index 7ed6ff8..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100755 index d39f06a..0000000 --- a/debian/control +++ /dev/null @@ -1,11 +0,0 @@ - -Source: capi-base-common -Section: libs -Priority: extra -Maintainer: Woongsuk Cho <ws77.cho@samsung.com>, Junghyuk Park <junghyuk.park@samsung.com> -Build-Depends: debhelper (>= 5), - -Package: capi-base-common-dev -Architecture: any -Description: Common header files of Tizen Native API - diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 2f845ff..0000000 --- a/debian/rules +++ /dev/null @@ -1,64 +0,0 @@ -#!/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_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 - |