diff options
author | P. J. McDermott <pjm@nac.net> | 2012-02-09 10:56:43 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-02-09 10:56:43 (EST) |
commit | f431cd1a48a6a5186633bf5f16a2d21cb4399e8c (patch) | |
tree | 337e36fd9d7884fcf76ba769ab7b0039f52d9d31 /build |
Initial commit.
TODO: Copyright information.
Including source code and a patch to add files generated by GNU Autoconf
is not very pretty... Running 'make dist' in the SVN trunk to generate
a source archive might be better.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#! /usr/bin/make -f + +opkg opkg-doc libopkg.1 libopkg.1-dbg libopkg.1-dev: opkg.buildstamp + +.SILENT: opkg.buildstamp +opkg.buildstamp: + cd src && chmod a+x configure && \ + ./configure --prefix=/usr --disable-static \ + --disable-curl --disable-ssl-curl --disable-gpg && \ + make && make DESTDIR=$$(pwd)/../dest install + oh-strip -gl /usr/lib/libopkg.so.1.0.0 + oh-installfiles opkg opkg-doc libopkg.1 libopkg.1-dbg libopkg.1-dev + oh-installdocs libopkg.1 + oh-gencontrol opkg opkg-doc libopkg.1 libopkg.1-dbg libopkg.1-dev + oh-buildopk opkg opkg-doc libopkg.1 libopkg.1-dbg libopkg.1-dev + touch opkg.buildstamp |