summaryrefslogtreecommitdiff
path: root/libdvdcss/debian/control
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-03-20 13:42:55 +0000
committerB Stack <bgstack15@gmail.com>2019-03-20 13:42:55 +0000
commit3800484b87eb7cd8dde9b31bf01f19fc9cc7ab41 (patch)
tree576394e72f98354422be16f5a758fbda33fe7f43 /libdvdcss/debian/control
parentMerge branch 'makemkv-dpkg' into 'master' (diff)
parentlibdvdcss 1.4.2 dpkg rc1 (diff)
downloadstackrpms-3800484b87eb7cd8dde9b31bf01f19fc9cc7ab41.tar.gz
stackrpms-3800484b87eb7cd8dde9b31bf01f19fc9cc7ab41.tar.bz2
stackrpms-3800484b87eb7cd8dde9b31bf01f19fc9cc7ab41.zip
Merge branch 'libdvdcss-dpkg' into 'master'
libdvdcss 1.4.2 dpkg rc1 Because I don't like the libdvd-pkg and the interactivity required. The upstream package is very clever and slick, truly. I just want to do an unattended installation, as well as bundle my own addition. See merge request bgstack15/stackrpms!48
Diffstat (limited to 'libdvdcss/debian/control')
-rw-r--r--libdvdcss/debian/control28
1 files changed, 28 insertions, 0 deletions
diff --git a/libdvdcss/debian/control b/libdvdcss/debian/control
new file mode 100644
index 0000000..6acdbd5
--- /dev/null
+++ b/libdvdcss/debian/control
@@ -0,0 +1,28 @@
+Source: libdvdcss
+Section: libs
+Priority: extra
+Maintainer: B Stack <bgstack15@gmail.com>
+Build-Depends: debhelper (>=11~), dh-autoreconf,
+ autotools-dev
+Standards-Version: 4.1.4
+Homepage: http://download.videolan.org/
+
+Package: libdvdcss-dev
+Section: libdevel
+Architecture: any
+Depends: libdvdcss2 (= ${binary:Version}), ${misc:Depends}
+Description: library designed for accessing DVDs
+ libdvdcss is a simple library designed for accessing DVDs like a
+ block device without having to bother about the decryption.
+ .
+ This package provides the development files.
+
+Package: libdvdcss2
+Section: libs
+Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: library designed for accessing DVDs
+ libdvdcss is a simple library designed for accessing DVDs like a
+ block device without having to bother about the decryption.
bgstack15