diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-08-13 22:17:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-13 22:17:40 -0400 |
commit | 9dc4cc085d2075810766b712a8d82a67ad1c80a0 (patch) | |
tree | 7c886988492bf084c77c608d411c2a9efca06237 | |
parent | b674603ec117c8464015a6547d30dbe6d78f7617 (diff) | |
download | astroconda-dev-9dc4cc085d2075810766b712a8d82a67ad1c80a0.tar.gz |
[ds9] Disable xscreensaver support (#50)
* Disable xscreensaver support
* Update meta.yaml
-rw-r--r-- | ds9/build.sh | 28 | ||||
-rw-r--r-- | ds9/meta.yaml | 2 |
2 files changed, 14 insertions, 16 deletions
diff --git a/ds9/build.sh b/ds9/build.sh index f2fe0a5..31f3d89 100644 --- a/ds9/build.sh +++ b/ds9/build.sh @@ -1,20 +1,18 @@ - case "$(uname)" in -Linux) -LDFLAGS='-m64' -;; -Darwin) -LDFLAGS='-arch x86_64 -m64' - -sed -i -e '/codesign/d' ds9/unix/Makefile.in -;; -*) -echo "Unsupported" -exit 1 -;; + Linux) + LDFLAGS='-m64' + ;; + Darwin) + LDFLAGS='-arch x86_64 -m64' + sed -i -e '/codesign/d' ds9/unix/Makefile.in + ;; + *) + echo "Unsupported" + exit 1 + ;; esac -unix/configure +unix/configure TKFLAGS="--disable-xss" # not all machines have libXss make mkdir -p $PREFIX/bin -cp -a bin/ds9* bin/x* $PREFIX/bin
\ No newline at end of file +cp -a bin/ds9* bin/x* $PREFIX/bin diff --git a/ds9/meta.yaml b/ds9/meta.yaml index 57a51b6..eb647cd 100644 --- a/ds9/meta.yaml +++ b/ds9/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'ds9' %} {% set version = '7.5' %} -{% set number = '0' %} +{% set number = '1' %} about: home: http://ds9.si.edu/download/source/ |