diff options
-rw-r--r-- | .SRCINFO | 15 | ||||
-rw-r--r-- | PKGBUILD | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..46b68db7c43c --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = pynterferometer + pkgdesc = Is a graphical interface designed to demonstrated the techniques of radio interferometry used by telescopes + pkgver = 2.0 + pkgrel = 1 + url = https://www.jb.man.ac.uk/pynterferometer/index.html + arch = x86_64 + license = unknown + depends = tk + depends = python-numpy + depends = python-matplotlib + depends = python-scipy + source = https://www.jb.man.ac.uk/pynterferometer/Linux/LinuxV2ERIS.tar + md5sums = 55dd6a740993e098c5aa6bd9b96f491c + +pkgname = pynterferometer diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..f509f1857015 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,15 @@ +pkgname="pynterferometer" +pkgver=2.0 +pkgrel=1 +pkgdesc="Is a graphical interface designed to demonstrated the techniques of radio interferometry used by telescopes" +arch=("x86_64") +url="https://www.jb.man.ac.uk/pynterferometer/index.html" +license=('unknown') +depends=('tk' 'python2' 'python2-numpy' 'python2-matplotlib' 'python2-scipy') +source=("https://www.jb.man.ac.uk/pynterferometer/Linux/LinuxV2ERIS.tar") +md5sums=('55dd6a740993e098c5aa6bd9b96f491c') + +package() { + install -d "${pkgdir}/opt" + cp -r "${srcdir}/V2_Eris/" "${pkgdir}/opt/${pkgname}" +} |