mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-01 18:32:58 +02:00
wendy: update to 1.0.
This commit is contained in:
parent
329cdbe430
commit
8d9cbfe372
2 changed files with 21 additions and 13 deletions
|
@ -1,17 +1,17 @@
|
||||||
--- wendy.c.orig 2015-09-07 15:45:56.336193710 -0400
|
--- wendy.c.orig 2016-02-01 07:45:28.000000000 -0500
|
||||||
+++ wendy.c 2015-09-07 15:46:12.468193218 -0400
|
+++ wendy.c 2016-02-01 10:53:25.313600196 -0500
|
||||||
@@ -115,7 +115,7 @@
|
@@ -102,7 +102,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
-execvpe(const char *program, char **argv, char **envp)
|
-execvpe(const char *program, char **argv, char **envp)
|
||||||
+_execvpe(const char *program, char **argv, char **envp)
|
+_execvpe(const char *program, char **argv, char **envp)
|
||||||
{
|
{
|
||||||
char **saved = environ;
|
char **saved = environ;
|
||||||
int rc;
|
int rc;
|
||||||
@@ -258,7 +258,7 @@
|
@@ -262,7 +262,7 @@
|
||||||
* Also, double-forking.
|
setenv(ENV_MASK, strmask, 1);
|
||||||
*/
|
setenv(ENV_PATH, EVENT_PATH(ev), 1);
|
||||||
if (!fork())
|
if (!fork())
|
||||||
- if (!fork()) execvpe(cmd[0], cmd, environ);
|
- if (!fork()) execvpe(cmd[0], cmd, environ);
|
||||||
+ if (!fork()) _execvpe(cmd[0], cmd, environ);
|
+ if (!fork()) _execvpe(cmd[0], cmd, environ);
|
||||||
|
|
|
@ -1,12 +1,20 @@
|
||||||
# Template file for 'wendy'
|
# Template file for 'wendy'
|
||||||
pkgname=wendy
|
pkgname=wendy
|
||||||
version=0.7
|
version=1.0
|
||||||
revision=2
|
revision=1
|
||||||
build_style=gnu-makefile
|
|
||||||
make_install_args="MANPREFIX=/usr/share/man"
|
|
||||||
short_desc="Inotify based directory watcher"
|
short_desc="Inotify based directory watcher"
|
||||||
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
||||||
license="WTFPL"
|
license="ISC"
|
||||||
homepage="http://git.z3bra.org/wendy/log.html"
|
homepage="http://git.z3bra.org/wendy/log.html"
|
||||||
distfiles="http://dl.z3bra.org/releases/${pkgname}-${version}.tar.bz2"
|
distfiles="http://dl.z3bra.org/releases/${pkgname}-${version}.tar.bz2"
|
||||||
checksum=1d8fb96cc14879863c27ef1afcd0e6e3b47c2af478f42e1b52fc9792ccb5380e
|
checksum=dbdccce31ec9ad52921a121ac0433f14b76cb103cddf363152c5f17f85f291d7
|
||||||
|
|
||||||
|
do_build() {
|
||||||
|
make CC="$CC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
vbin wendy
|
||||||
|
vman wendy.1
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue