adding dependencies
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
libopencm3 (0.0~20130110+git20bfcaeb1-1) UNRELEASED; urgency=low
|
||||
|
||||
* Merged current upstream state
|
||||
- started indicating upstream revision in debian version number
|
||||
|
||||
-- Christian M. Amsüss <chrysn@fsfe.org> Thu, 10 Jan 2013 11:43:09 +0100
|
||||
|
||||
libopencm3 (0) UNRELEASED; urgency=low
|
||||
|
||||
* First packaging attempt to see where it installs
|
||||
|
||||
-- Christian M. Amsüss <chrysn@fsfe.org> Wed, 18 Apr 2012 11:20:37 +0200
|
||||
@@ -0,0 +1 @@
|
||||
9
|
||||
@@ -0,0 +1,21 @@
|
||||
Source: libopencm3
|
||||
Priority: optional
|
||||
Maintainer: Christian M. Amsüss <chrysn@fsfe.org>
|
||||
Build-Depends: debhelper (>= 9),
|
||||
gcc-arm-none-eabi,
|
||||
arm-none-eabi-libc,
|
||||
binutils-multiarch,
|
||||
Standards-Version: 3.9.3
|
||||
Section: fixme
|
||||
Homepage: http://www.libopencm3.org/
|
||||
|
||||
Package: libopencm3
|
||||
Section: fixme
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Description: firmware library for ARM Cortex-M3 microcontrollers
|
||||
The libopencm3 library provides the base code for running software without an
|
||||
operating system on ARM Cortex-M3 microcontrollers, and contains both system
|
||||
initialization routines and periphery implementation.
|
||||
.
|
||||
It supports the STM32, TX03, SAM3U and LPC1000 families of chips.
|
||||
@@ -0,0 +1,6 @@
|
||||
[DEFAULT]
|
||||
debian-branch = debian
|
||||
|
||||
# so far, this is configured to only build binary packages and not source
|
||||
# packages; without a release tarball and in the current stage of packaging,
|
||||
# that'd be unnecessary
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
# DH_VERBOSE=1
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
# libopencm3's build system uses the variable PREFIX different from usual
|
||||
# build systems (usually, it'd be /usr; here, it is arm-none-eabi), and use
|
||||
# DESTDIR for what is usually ${DESTDIR}/${PREFIX}. there are no generated
|
||||
# files that get their paths hardcoded, so ${PREFIX} alone is not needed
|
||||
# anyway.
|
||||
LIBOPENCM3OPTS=DESTDIR=$(CURDIR)/debian/libopencm3/usr/
|
||||
|
||||
override_dh_auto_build:
|
||||
# we're not compiling in a debian sense -- and the normal flags make
|
||||
# things break
|
||||
CFLAGS= CPPFLAGS= LDFLAGS= $(MAKE) $(LIBOPENCM3OPTS)
|
||||
|
||||
override_dh_auto_install:
|
||||
$(MAKE) $(LIBOPENCM3OPTS) install
|
||||
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
@@ -0,0 +1 @@
|
||||
single-debian-patch
|
||||
Reference in New Issue
Block a user