diff options
author | rsc <devnull@localhost> | 2005-09-13 01:32:13 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-09-13 01:32:13 +0000 |
commit | 8ded88825452334bf8d2fef9bff3b6d4945d1777 (patch) | |
tree | eb2c55157f9df7ad36d65eb27fcbde8d26283291 | |
parent | f91af8ada94a840f2c2f5abe68458c090b3038c2 (diff) | |
download | plan9port-8ded88825452334bf8d2fef9bff3b6d4945d1777.tar.gz plan9port-8ded88825452334bf8d2fef9bff3b6d4945d1777.tar.bz2 plan9port-8ded88825452334bf8d2fef9bff3b6d4945d1777.zip |
Binaries.
-rw-r--r-- | dist/pkg/bin24 | 16 | ||||
-rw-r--r-- | dist/pkg/bin26 | 16 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dist/pkg/bin24 b/dist/pkg/bin24 new file mode 100644 index 00000000..ed25416f --- /dev/null +++ b/dist/pkg/bin24 @@ -0,0 +1,16 @@ +if(! ~ $march i386){ + echo '>>>' do not need to build bin24 on non-x86 + exit 1 +} +if(! ~ `{uname -r} 2.4.*){ + echo '>>>' must build bin24 on 2.4 system + exit 1 +} +arch=$march +depends=plan9port-^(base) +conflicts=plan9port-bin26 +desc='Plan 9 from User Space - binaries + This package contains binaries for Plan 9 from User Space. + XXX Linux note here XXX +' +grepfor=bin diff --git a/dist/pkg/bin26 b/dist/pkg/bin26 new file mode 100644 index 00000000..fa27973f --- /dev/null +++ b/dist/pkg/bin26 @@ -0,0 +1,16 @@ +if(! ~ $march i386){ + echo '>>>' do not need to build bin24 on non-x86 + exit 1 +} +if(! ~ `{uname -r} 2.6.*){ + echo '>>>' must build bin26 on 2.6 system + exit 1 +} +arch=$march +depends=plan9port-^(base) +conflicts=plan9port-bin24 +desc='Plan 9 from User Space - binaries + This package contains binaries for Plan 9 from User Space. + XXX Linux note here XXX +' +grepfor=bin |