OK, so an easier way to manage versions.

Debian package creation - crude, probably violated the Debian policys
but it seems to work just fine...
some other changes.
This commit is contained in:
Gordon Henderson
2015-01-31 16:43:08 +00:00
parent eb1fc2c920
commit 7cb817498e
13 changed files with 169 additions and 117 deletions

10
debian/wiringPi/DEBIAN/control vendored Normal file
View File

@@ -0,0 +1,10 @@
Package: wiringpi
Version: 2.24
Section: libraries
Priority: optional
Architecture: armhf
Depends: libc6
Maintainer: Gordon Henderson <projects@drogon.net>
Description: The wiringPi libraries, headers and gpio command
Libraries to allow GPIO access on a Raspberry Pi from C and C++
programs as well as from the command-line

5
debian/wiringPi/DEBIAN/postinst vendored Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
set -e
/bin/chown root.root /usr/bin/gpio
/bin/chmod 4755 /usr/bin/gpio
/sbin/ldconfig

2
debian/wiringPi/DEBIAN/postrm vendored Executable file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
/sbin/ldconfig