blob: 924dda85f4fc71d086d12b8e5b969cbad66be965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# on the base of Gentoo gwyddion ebuild
# http://packages.gentoo.org/package/sci-visualization/gwyddion
pkgname=gwyddion
pkgver=2.49
pkgrel=1
pkgdesc="A data visualization and processing tool for scanning probe miscroscopy (SPM, i.e. AFM, STM, MFM, SNOM/NSOM, ...) and profilometry, useful also for general image and 2D data analysis"
#A modular program for SPM (scanning probe microscopy) and other 2D (height field) data visualization and analysis"
url="http://gwyddion.net/"
license=("GPL")
arch=('i686' 'x86_64')
depends=(gtkglext pygtk openexr fftw libunique)
#depends=('freeglut' 'gtksourceview')
makedepends=('pkgconfig')
optdepends=('libxml2: import of SPML and APE DAX data files'
'zlib: import of SPML data files and import of gzip-compressed data from other file formats (Createc, NRRD, RHK SM4 PRM metadata)'
'perl: development of plug-in'
'ruby: development of plug-in'
'fpc: development of plug-in'
'gtksourceview2: Pygwy console syntax highlighting'
'bzip2: import of bzip2-compressed data from NRRD'
'libpng: export of height fields to 16bit greyscale PNG images and import from 16bit PNG images'
'libwebp: WebP format support for the image export'
'libzip: import of APE DAX, NanoObserver, NanoScanTech, OpenGPS and Sensofar PLUX data files'
'cfitsio: import of Flexible Image Transport System (FITS) files')
source=(http://downloads.sourceforge.net/sourceforge/gwyddion/$pkgname-$pkgver.tar.xz)
sha256sums=('625cf6766de5576491e84f4fbb712c568e2f63f4eec6b24a484c5b27dd04fe32')
prepare() {
cd $pkgname-$pkgver
# python2 fix
for file in $(find . -name '*.py' -print); do
sed -i 's_#!.*/usr/bin/python_#!/usr/bin/python2_' $file
sed -i 's_#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
done
}
build() {
cd $pkgname-$pkgver
# ./configure --prefix=/usr --disable-desktop-file-update \
# --disable-rpath \
# --enable-library-bloat \
# --enable-plugin-proxy \
# --disable-updater --disable-schemas-compile \
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --libexecdir=/usr/lib \
--disable-schemas-install \
PYTHON=python2
make PYTHON=python2
}
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 PYTHON=python2 install
install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gwyddion ${pkgdir}/etc/gconf/schemas/*.schemas
rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
}
|