install.sh 270 B

1234567891011121314
  1. #!/usr/bin/env bash
  2. make install
  3. if [[ "$PKG_NAME" == *static ]]; then
  4. # relying on conda to dedup package
  5. echo "Keeping all files, conda will dedupe"
  6. else
  7. rm -rf ${PREFIX}/lib/libev.a
  8. fi
  9. if [[ "$PKG_NAME" != *-libevent ]]; then
  10. rm "${PREFIX}/include/event.h"
  11. fi