blob: c3cefa1285de8f7bd1dba8d9f0ffbc1ef99c20da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- Makefile.orig 2011-04-18 16:33:55.213561221 +0200
+++ Makefile 2011-04-18 16:36:40.829455739 +0200
@@ -1,8 +1,11 @@
-export prefix=/usr/local
+DESTDIR ?=
+export prefix=$(DESTDIR)/usr
export milena_dir=$(prefix)/share/milena-words
+default:
install:
- zcat pl_basewords.dat.gz > $(milena_dir)/pl_basewords.dat
+ install -dm 755 "$(milena_dir)/"
+ zcat pl_basewords.dat.gz > "$(milena_dir)/pl_basewords.dat"
uninstall:
rm -r $(milena_dir)/pl_basewords.dat
|