Sha256: 9e1df7455b7118a7507e0e66201d2384d48b76b5ff4997300d4b442af7ea073c

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

#!/bin/sh -e

okabi | (
  while read abi
  do

    rm -f randombytes.o randombytes.h
    
    (
      echo devurandom
    ) | (
      while read n
      do
        okc-$abi | (
          while read c
          do
            echo "=== `date` === Trying $n.c with $c..." >&2
            rm -f test randombytes-impl.o randombytes-impl.h randombytes-impl.c
            cp $n.c randombytes-impl.c || continue
            cp $n.h randombytes-impl.h || continue
            $c -c randombytes-impl.c || continue
            $c -o test test.c randombytes-impl.o || continue
            ./test || continue
            echo "=== `date` === Success. Using $n.c." >&2
            mkdir -p lib/$abi
            mv randombytes-impl.o lib/$abi/randombytes.o
            mkdir -p include/$abi
            mv randombytes-impl.h include/$abi/randombytes.h
            exit 0
          done
          exit 111
        ) && exit 0
      done
      exit 111
    ) || (
      echo ===== Giving up. >&2
      rm -f test randombytes-impl.o randombytes-impl.h randombytes-impl.c
      exit 111
    ) || exit 111

  done
  exit 0
) || exit 111

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_nacl-0.1.2 ext/ruby_nacl/NaCl/randombytes/do
ruby_nacl-0.1.1 ext/ruby_nacl/NaCl/randombytes/do
ruby_nacl-0.1.0 ext/ruby_nacl/NaCl/randombytes/do