diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/control | 12 | ||||
-rwxr-xr-x | debian/rules | 33 |
3 files changed, 52 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1471bf8 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,7 @@ +alsa-scenario-scn (1.0.18) unstable; urgency=low + + * Initial release. + * Git: 165.213.180.234:/git/kernel/alsa-scenario-scn-data-0 + * Tag: alsa-scenario-scn_1.0.18 + + -- Chanwoo Choi <cw00.choi@samsung.com> Tue, 30 Nov 2010 09:47:13 +0900 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..75b9c35 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: alsa-scenario-scn +Section: utils +Priority: low +Maintainer: Chanwoo Choi <cw00.choi@samsung.com> +Build-Depends: debhelper (>=5), autotools-dev +Standards-Version: 1.7.2 + +Package: alsa-scenario-scn-data-0 +Section: utils +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Virtual package for alsa-scenario-scn-data-0-codec diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..6635533 --- /dev/null +++ b/debian/rules @@ -0,0 +1,33 @@ +#!/usr/bin/make -f + +ifneq (,$(findstring arm,$(DEB_HOST_ARCH))) + export ARCH = arm +else + export ARCH = i686 +endif + +clean: + dh_clean -k + +build: + @echo "Building meta package for Application FW part - arch is $(ARCH)" + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + +# Build architecture-dependent files here. +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_install --sourcedir=debian/tmp + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-arch +.PHONY: binary-arch binary install |