first commit
This commit is contained in:
11
external/packages/extras-buildpkgs/libUMP/debian/changelog
vendored
Normal file
11
external/packages/extras-buildpkgs/libUMP/debian/changelog
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
libump (3.0-0sunxi1) any; urgency=low
|
||||
|
||||
* add udev file.
|
||||
|
||||
-- Luc Verhaegen <libv@skynet.be> Tue, 22 Oct 2013 17:31:32 +0200
|
||||
|
||||
libump (3.0-0sunxi) any; urgency=low
|
||||
|
||||
* package up libump.
|
||||
|
||||
-- Luc Verhaegen <libv@skynet.be> Sun, 20 Oct 2013 16:34:34 +0200
|
||||
1
external/packages/extras-buildpkgs/libUMP/debian/compat
vendored
Normal file
1
external/packages/extras-buildpkgs/libUMP/debian/compat
vendored
Normal file
@@ -0,0 +1 @@
|
||||
9
|
||||
35
external/packages/extras-buildpkgs/libUMP/debian/control
vendored
Normal file
35
external/packages/extras-buildpkgs/libUMP/debian/control
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
Source: libump
|
||||
Section: devel
|
||||
Priority: optional
|
||||
Maintainer: Luc Verhaegen <libv@skynet.be>
|
||||
Uploaders: Luc Verhaegen <libv@skynet.be>
|
||||
Build-Depends:
|
||||
debhelper (>= 9),
|
||||
dh-autoreconf,
|
||||
pkg-config,
|
||||
Standards-Version: 3.9.2
|
||||
Vcs-Git: https://github.com/libv/libump
|
||||
Vcs-Browser: https://github.com/libv/libump
|
||||
|
||||
Package: libump
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Depends:
|
||||
${shlibs:Depends},
|
||||
${misc:Depends},
|
||||
Pre-Depends: ${misc:Pre-Depends}
|
||||
Multi-Arch: same
|
||||
Description: ARM Unified Memory Provider library
|
||||
The ARM Unified Memory Provider is needed for certain ARM SoCs with
|
||||
an ARM Mali GPU. The binary Mali driver for X11 depends on it.
|
||||
|
||||
Package: libump-dev
|
||||
Section: libdevel
|
||||
Architecture: any
|
||||
Depends:
|
||||
libump (= ${binary:Version}),
|
||||
${misc:Depends},
|
||||
Description: ARM Unified Memory Provider library (development files)
|
||||
The ARM Unified Memory Provider is needed for certain ARM SoCs with
|
||||
an ARM Mali GPU. The binary Mali driver for X11 depends on it. This
|
||||
package is needed to build programs which link against libUMP.
|
||||
13
external/packages/extras-buildpkgs/libUMP/debian/copyright
vendored
Normal file
13
external/packages/extras-buildpkgs/libUMP/debian/copyright
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
Copyright (C) 2010-2012 ARM Limited. All rights reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
4
external/packages/extras-buildpkgs/libUMP/debian/libump-dev.install
vendored
Normal file
4
external/packages/extras-buildpkgs/libUMP/debian/libump-dev.install
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
usr/lib/*/libUMP.so
|
||||
usr/lib/*/libUMP.a
|
||||
usr/lib/*/pkgconfig/libump.pc
|
||||
usr/include/ump
|
||||
2
external/packages/extras-buildpkgs/libUMP/debian/libump.install
vendored
Normal file
2
external/packages/extras-buildpkgs/libUMP/debian/libump.install
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
usr/lib/*/libUMP.so.*
|
||||
etc/modules-load.d/*
|
||||
12
external/packages/extras-buildpkgs/libUMP/debian/libump.postinst
vendored
Normal file
12
external/packages/extras-buildpkgs/libUMP/debian/libump.postinst
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
case "$1" in
|
||||
install)
|
||||
which udevadm > /dev/null && udevadm trigger --action=add --sysname-match=ump || true
|
||||
modprobe -q ump || true
|
||||
;;
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
||||
1
external/packages/extras-buildpkgs/libUMP/debian/libump.udev
vendored
Normal file
1
external/packages/extras-buildpkgs/libUMP/debian/libump.udev
vendored
Normal file
@@ -0,0 +1 @@
|
||||
KERNEL=="ump", MODE="0660", GROUP="video"
|
||||
11
external/packages/extras-buildpkgs/libUMP/debian/rules
vendored
Normal file
11
external/packages/extras-buildpkgs/libUMP/debian/rules
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
PACKAGE = libump
|
||||
|
||||
override_dh_auto_install:
|
||||
dh_auto_install
|
||||
mkdir -p debian/tmp/etc/modules-load.d/
|
||||
install -m0644 debian/ump.conf debian/tmp/etc/modules-load.d/ump.conf
|
||||
|
||||
%:
|
||||
dh $@ --with autoreconf
|
||||
1
external/packages/extras-buildpkgs/libUMP/debian/ump.conf
vendored
Normal file
1
external/packages/extras-buildpkgs/libUMP/debian/ump.conf
vendored
Normal file
@@ -0,0 +1 @@
|
||||
ump
|
||||
Reference in New Issue
Block a user