summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2014-11-21 00:35:09 +0100
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2014-11-21 01:02:22 +0100
commitdb5ebf8f9de8152fc64df945bf70a34fe9309853 (patch)
tree2d2865d1bfe87a3dc41c78ec957404a3000df7aa
Initial debianization for Adreno user mode driver
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r--debian/adreno-egl.install2
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control26
-rw-r--r--debian/copyright10
-rwxr-xr-xdebian/rules33
6 files changed, 77 insertions, 0 deletions
diff --git a/debian/adreno-egl.install b/debian/adreno-egl.install
new file mode 100644
index 0000000..5ad93c7
--- /dev/null
+++ b/debian/adreno-egl.install
@@ -0,0 +1,2 @@
+usr/lib/*/adreno-egl/*.so*
+usr/share/doc/*/* /usr/share/doc/adreno-egl/
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..34cf48a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+adreno-egl (0.1-1) utopic; urgency=medium
+
+ * Initial release.
+
+ -- Nicolas Dechesne <nicolas.dechesne@linaro.org> Thu, 20 Nov 2014 23:31:25 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..16a49c9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: adreno-egl
+Priority: optional
+Maintainer: Nicolas Dechesne <nicolas.dechesne@linaro.org>
+Build-Depends:
+ debhelper (>= 9),
+Standards-Version: 3.9.4
+Section: libs
+Vcs-Git: https://git.linaro.org/landing-teams/working/qualcomm/pkg/adreno-egl.git
+
+Package: adreno-egl
+Section: libs
+Architecture: armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Description: User-mode driver binaries for Qualcomm Adreno 320 GPU
+
+Package: adreno-egl-dbg
+Section: debug
+Priority: extra
+Architecture: armhf
+Depends:
+ adreno-egl (= ${binary:Version}),
+ ${misc:Depends},
+Multi-Arch: same
+Description: User-mode driver binaries for Qualcomm Adreno 320 GPU (debug)
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f1e2c3c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,10 @@
+This work was packaged for Debian/Ubuntu by
+ Nicolas Dechesne <nicolas.dechesne@linaro.org>.
+
+Copyright:
+
+ Copyright (C) 2014 Linaro Limited
+
+License:
+
+ All rights reserved.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..c642495
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,33 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+DH_VERBOSE = 1
+
+# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+# see FEATURE AREAS in dpkg-buildflags(1)
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+# see ENVIRONMENT in dpkg-buildflags(1)
+# package maintainers to append CFLAGS
+#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
+# package maintainers to append LDFLAGS
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+# main packaging script based on dh7 syntax
+%:
+ dh $@
+
+# Override build and clean rules since we rely on prebuilt tarball
+override_dh_auto_build:
+ tar -xf adreno-ubuntu.tar.gz
+
+override_dh_auto_clean:
+ rm -rf usr
+
+#override_dh_shlibdeps:
+#
+
+