summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Kibum <kb0929.kim@samsung.com>2012-04-29 16:59:36 +0900
committerKim Kibum <kb0929.kim@samsung.com>2012-04-29 16:59:36 +0900
commit4de7dda88b41ed4ba8f9ce4ea0178c3f177689f3 (patch)
tree8eadf89f695916af23a84f86943bfc0fcf80b425
parent7959a00cdefc7c754dd720ec4e1edea0a0e33e8f (diff)
downloadalsa-scenario-scn-data-0-master.tar.gz
alsa-scenario-scn-data-0-master.tar.bz2
alsa-scenario-scn-data-0-master.zip
-rw-r--r--debian/changelog7
-rw-r--r--debian/control12
-rwxr-xr-xdebian/rules33
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