Commit 67eddefe authored by aTc's avatar aTc
Browse files

pyra-hacks : moved from pyra-scripts, added pyra_volumed

parent 91f04611
Loading
Loading
Loading
Loading

Makefile

0 → 100644
+25 −0
Original line number Diff line number Diff line
CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall -O2 -ggdb
TOPDIR	= $(shell pwd)
export TOPDIR

TARGETS = pyra_volumed


.PHONY: all install clean

all: $(TARGETS)

clean:
	$(RM) $(TARGETS)

pyra_volumed: LDLIBS+= -lasound -liio


install:
	install -d "$(DESTDIR)/usr/bin"
	install -m 755 -t "$(DESTDIR)/usr/bin" "$(TOPDIR)/pyra_volumed"
	install -d "$(DESTDIR)/lib/systemd/system"
	install -m 644 -t "$(DESTDIR)/lib/systemd/system/" "$(TOPDIR)/pyra_volumed.service"
	install -d "$(DESTDIR)/lib/udev/rules.d/"
	install -m 644 -t "$(DESTDIR)/lib/udev/rules.d/" "$(TOPDIR)/nubs.rules"	

debian/changelog

0 → 100644
+5 −0
Original line number Diff line number Diff line
pyra-hacks (0.1) stretch; urgency=medium

  * Initial Release.

 -- Pyra Dev <dev@pyra-handheld.com>  Wed, 17 Jul 2019 11:12:44 +0200

debian/compat

0 → 100644
+1 −0
Original line number Diff line number Diff line
9

debian/control

0 → 100644
+14 −0
Original line number Diff line number Diff line
Source: pyra-hacks
Section: misc
Priority: optional
Maintainer: Pyra Dev <dev@pyra-handheld.com>
Build-Depends: debhelper (>= 9), dh-systemd, systemd, libasound2-dev,
 libiio-dev
Standards-Version: 3.9.8
Homepage: http://dev.pyra-handheld.com/packages/pyra-hacks.git

Package: pyra-hacks
Architecture: any
Depends: ${misc:Depends}, libasound2, libiio0
Description: Some hacks to quickly get around a few problems
 These things should be properly fixed at some stage.

debian/copyright

0 → 100644
+30 −0
Original line number Diff line number Diff line
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: pyra-hacks
Source: http://dev.pyra-handheld.com/packages/pyra-hacks.git

Files: *
Copyright: 2019 Pyra Dev <dev@pyra-handheld.com>
License: MIT

Files: debian/*
Copyright: 2019 Pyra Dev <dev@pyra-handheld.com>
License: MIT

License: MIT
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of this software and associated documentation files (the "Software"),
 to deal in the Software without restriction, including without limitation
 the rights to use, copy, modify, merge, publish, distribute, sublicense,
 and/or sell copies of the Software, and to permit persons to whom the
 Software is furnished to do so, subject to the following conditions:
 .
 The above copyright notice and this permission notice shall be included
 in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Loading