blob: db7d4ed60de02702f2fcb6f30d1615d9991712b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- Makefile.orig Sun Apr 13 00:21:23 2003
+++ Makefile Sun Apr 13 00:22:17 2003
@@ -0,0 +1,9 @@
+DESTDIR=$(PREFIX)/lib/X11/fonts
+
+all:
+ @echo nothing to be done for \`$@\'
+ @echo this is an install-only port.
+
+install:
+ [ -d $(DESTDIR) ] || mkdir $(DESTDIR)
+ (cd nucleus && tar -cf - nucleus) | (cd ${DESTDIR}; tar -xf -)
|