Re: [dev] why avoid install?

2014-11-18 Thread Felix Janda
pancake wrote: > What about a suckless install and a suckless pkgconfig? Both are > bloated in nature but can be implemented in a very simple way to > replace easily the gnu or bsd implementations You are aware of pkg-conf?

Re: [dev] I'm back

2012-11-18 Thread Felix Janda
On 11/18/12 at 07:00am, Jens Staal wrote: > I agree with this. As an example distribution, Sabotage does things pretty > well. One detail that I like a lot (but it sort of depends on your stance on > symlinks) is the way applications usually are placed in it: > > Each application gets its own di

Re: [dev] sbase TODO patch

2012-02-11 Thread Felix Janda
On 02/11/12 at 12:07pm, Bjartur Thorlacius wrote: > Þann lau 11.feb 2012 09:29, skrifaði Felix Janda: > > sed 's/rmdir/unlink/' rmdir.c > unlink.c > Shouldn't there be an utility that does both? A flag to rm, perhaps? > What do you exactly mean? Which function

Re: [dev] sbase TODO patch

2012-02-11 Thread Felix Janda
sed 's/rmdir/unlink/' rmdir.c > unlink.c

Re: [dev] sbase TODO patch

2012-02-09 Thread Felix Janda
Hi, here is a version of rmdir(1) in the spirit of mkfifo.c. Felix#include #include #include "util.h" int main(int argc, char *argv[]) { while(getopt(argc, argv, "") != -1) exit(EXIT_FAILURE); for(; optind < argc; optind++) if(rmdir(argv[optind]) == -1) eprintf("remove %s:", argv[opti