i have packaged sandy, sbase, sxiv and other suckless packages in slpm (http://hg.youterm.com/slpm) you can build chroots with it or install packages without shitting the system.

I'm attaching a patch that fixes the make to use ${CC} instead of musl if $CC environ is defined, musl is not yet available on all systems, so we should honor those environment variables.

the patch also adds the 'install' target.

have fun

--pancake
diff -r a9db33a9bfea Makefile
--- a/Makefile  Sat Jun 04 14:30:54 2011 +0100
+++ b/Makefile  Wed Jun 08 11:15:12 2011 +0200
@@ -67,6 +67,12 @@
        @gzip sbase-$(VERSION).tar
        @rm -rf sbase-$(VERSION)
 
+install:
+       mkdir -p ${DESTDIR}${PREFIX}/bin
+       mkdir -p ${DESTDIR}${PREFIX}/share/man/man1
+       cp -f ${BIN} ${DESTDIR}${PREFIX}/bin
+       cp -f ${MAN} ${DESTDIR}${PREFIX}/share/man/man1
+
 clean:
        @echo cleaning
        @rm -f $(BIN) $(OBJ) $(LIB) util.a
diff -r a9db33a9bfea config.mk
--- a/config.mk Sat Jun 04 14:30:54 2011 +0100
+++ b/config.mk Wed Jun 08 11:15:12 2011 +0200
@@ -2,14 +2,17 @@
 VERSION = 0.0
 
 #CC = gcc
-CC = musl-gcc
-LD = $(CC)
+CC?= musl-gcc
+LD=${CC}
 CPPFLAGS = -D_POSIX_C_SOURCE=200112L
-CFLAGS   = -Os -ansi -Wall -pedantic $(CPPFLAGS)
-LDFLAGS  = -static #-s
+CFLAGS   ?= -Os -ansi -Wall -pedantic $(CPPFLAGS)
+LDFLAGS  ?= -static #-s
 
 #CC = tcc
 #LD = $(CC)
 #CPPFLAGS = -D_POSIX_C_SOURCE=200112L
 #CFLAGS   = -Os -Wall $(CPPFLAGS)
 #LDFLAGS  =
+
+PREFIX?=/usr/local
+DESTDIR?=

Reply via email to