summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavierCLL2015-06-13 00:27:05 -0500
committerXavierCLL2015-06-13 00:27:05 -0500
commitbc322244c726cc2fc05025b66981b79a18bfd0f6 (patch)
treee990d4377c91bef867a270f3dd61baf558492a1d
downloadaur-bc322244c726cc2fc05025b66981b79a18bfd0f6.tar.gz
Initial import
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD18
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..5aaa9daf9ab4
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = hdf-eos-common
+ pkgdesc = Common headers files for HDF-EOS2 and HDF-EOS5
+ pkgver = 1.15
+ pkgrel = 1
+ url = http://www.hdfeos.org/software/library.php
+ arch = i686
+ arch = x86_64
+ license = GPL
+ source = ftp://edhs1.gsfc.nasa.gov/edhs/hdfeos5/latest_release/HDF-EOS5.1.15.tar.Z
+ md5sums = 5d607a13dd42e559bfc90e278a8ec919
+
+pkgname = hdf-eos-common
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..3e9d9d9d14b8
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: (epsilom) Xavier Corredor <xavier.corredor.llano (a) gmail.com>
+
+pkgname=hdf-eos-common
+pkgver=1.15
+pkgrel=1
+pkgdesc="Common headers files for HDF-EOS2 and HDF-EOS5"
+url="http://www.hdfeos.org/software/library.php"
+license=('GPL')
+arch=('i686' 'x86_64')
+source=(ftp://edhs1.gsfc.nasa.gov/edhs/hdfeos5/latest_release/HDF-EOS5.$pkgver.tar.Z)
+md5sums=('5d607a13dd42e559bfc90e278a8ec919')
+
+package() {
+ cd $srcdir/hdfeos5
+ install -d -m755 $pkgdir/usr/include
+ mv include/{cfortHdf.h,cproj.h,ease.h,isin.h,proj.h} $pkgdir/usr/include/
+ mv gctp/include/{bcea.h,cproj_prototypes.h,gctp_prototypes.h} $pkgdir/usr/include/
+}