blob: 6f59eea1923b1fc8901b0698252022e21921f3b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
require 'formula'
class Bup < Formula
homepage 'https://github.com/apenwarr/bup'
url 'https://github.com/apenwarr/bup/tarball/bup-0.25-rc1'
version '0.25-rc1'
sha1 '96760b4cca5b4655cb79caaafd2ce2e70a242a7a'
head 'https://github.com/apenwarr/bup.git', :branch => 'master'
option "run-tests", "Run unit tests after compilation"
# patch to make the `--prefix` parameter work
# found at https://github.com/apenwarr/bup/pull/5
def patches
DATA
end
def install
ENV['PATH'] = '/usr/bin:' + ENV['PATH'] # make sure we Sytem Python
system "./configure", "--prefix=#{prefix}"
system "make"
system "make test" if build.include? "run-tests"
system "make install"
end
end
__END__
diff --git a/Makefile b/Makefile
index ce91ff0..ecb0604 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,4 @@
+-include config/config.vars
OS:=$(shell uname | sed 's/[-_].*//')
CFLAGS:=-Wall -O2 -Werror $(PYINCLUDE)
SOEXT:=.so
@@ -14,9 +15,6 @@ bup: lib/bup/_version.py lib/bup/_helpers$(SOEXT) cmds
Documentation/all: bup
-INSTALL=install
-PYTHON=python
-PREFIX=/usr
MANDIR=$(DESTDIR)$(PREFIX)/share/man
DOCDIR=$(DESTDIR)$(PREFIX)/share/doc/bup
BINDIR=$(DESTDIR)$(PREFIX)/bin
diff --git a/config/config.vars.in b/config/config.vars.in
index 7bc32ee..a45827c 100644
--- a/config/config.vars.in
+++ b/config/config.vars.in
@@ -1,2 +1,5 @@
CONFIGURE_FILES=@CONFIGURE_FILES@
GENERATED_FILES=@GENERATED_FILES@
+PREFIX=@prefix@
+INSTALL=@INSTALL@
+PYTHON=@PYTHON@
|