diff options
author | P. J. McDermott <pjm@nac.net> | 2012-10-19 23:29:08 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-10-19 23:30:09 (EDT) |
commit | 5989015be3e79f49a8796116664b5d8f804a912b (patch) | |
tree | fe13f20e1b26f3a8473ed340a92d738524ac6f2b /build | |
parent | 6f28b5a8f6009028441119846516ab30dcd24147 (diff) |
Update packaging to SPF 2.0.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -1,15 +1,14 @@ #! /usr/bin/make -f -fakeroot fakeroot-doc: fakeroot.buildstamp - -.SILENT: fakeroot.buildstamp -fakeroot.buildstamp: +build: cd src && \ ./configure --prefix=/usr && \ - make && make DESTDIR=$$(pwd)/../dest install - oh-strip -gl /usr/lib/libfakeroot-0.so - oh-installfiles fakeroot fakeroot-doc - oh-installdocs fakeroot - oh-gencontrol fakeroot fakeroot-doc - oh-buildopk fakeroot fakeroot-doc - touch fakeroot.buildstamp + make && \ + cd .. + +install: + cd src && \ + make DESTDIR=$$(pwd)/../dest install && \ + cd .. + #oh-strip -g + oh-installfiles |