New package: daemontools-0.76

This commit is contained in:
TJ Vanderpoel 2015-02-23 21:13:14 -06:00 committed by Juan RP
parent 64eaec67dc
commit 3ff4c43f9c
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,12 @@
diff -ur daemontools-0.76.old/src/error.h daemontools-0.76/src/error.h
--- daemontools-0.76.old/src/error.h 2001-07-12 11:49:49.000000000 -0500
+++ daemontools-0.76/src/error.h 2003-01-09 21:52:01.000000000 -0600
@@ -3,7 +3,7 @@
#ifndef ERROR_H
#define ERROR_H
-extern int errno;
+#include <errno.h>
extern int error_intr;
extern int error_nomem;

View file

@ -0,0 +1,24 @@
# Template file for 'daemontools'
pkgname=daemontools
version=0.76
revision=1
wrksrc=admin/${pkgname}-${version}
build_style=gnu-makefile
short_desc="A collection of tools for managing UNIX services"
maintainer="bougyman <tj@geoforce.com>"
license="Public Domain"
homepage="http://cr.yp.to/daemontools.html"
distfiles="http://cr.yp.to/daemontools/${pkgname}-${version}.tar.gz"
checksum=a55535012b2be7a52dcd9eccabb9a198b13be50d0384143bd3b32b8710df4c1f
patch_args="-p1"
do_build() {
package/compile
}
do_install() {
for command in command/*; do
vbin $command
done
}