diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-09-26 01:57:08 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-09-26 01:57:08 (GMT) |
commit | 7b29169fff9e7c624890c5edffe85def8a293136 (patch) | |
tree | 47753889faa3a2063b66d1c7e7681e703eb1b39a /abs/core/fftw2 | |
parent | c491dea779dac29afff3578bf8245943817c2339 (diff) | |
download | linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.zip linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.tar.gz linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.tar.bz2 |
LinHES 6.01.00
Diffstat (limited to 'abs/core/fftw2')
-rw-r--r-- | abs/core/fftw2/PKGBUILD | 26 | ||||
-rw-r--r-- | abs/core/fftw2/__changelog | 2 |
2 files changed, 26 insertions, 2 deletions
diff --git a/abs/core/fftw2/PKGBUILD b/abs/core/fftw2/PKGBUILD index 4198e96..18aa473 100644 --- a/abs/core/fftw2/PKGBUILD +++ b/abs/core/fftw2/PKGBUILD @@ -3,13 +3,13 @@ pkgname=fftw2 pkgver=2.1.5 -pkgrel=4 +pkgrel=9 pkgdesc="FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of both real and complex data, and of arbitrary input size. This is package is offering backwards compatibility version 2.x.y. of fftw." arch=(i686 x86_64) url="http://www.fftw.org/" license=('GPL2') depends=('glibc') -options=(!libtool) +options=(!libtool !emptydirs !docs) source=(http://www.fftw.org/fftw-${pkgver}.tar.gz) md5sums=('8d16a84f3ca02a785ef9eb36249ba433') @@ -31,4 +31,26 @@ build() { make || return 1 #make prefix=$startdir/pkg/usr install || return 1 make DESTDIR=${startdir}/pkg install || return 1 + cd $startdir/pkg/usr/include/ + ln -s sfftw.h fftw.h + ln -s sfftw_threads.h fftw_threads.h + ln -s srfftw.h rfftw.h + ln -s srfftw_threads.h rfftw_threads.h + cd $startdir/pkg/usr/lib + ln -s libsfftw.a libfftw.a + ln -s libsfftw.so libfftw.so + ln -s libsfftw.so.2 libfftw.so.2 + ln -s libsfftw.so.2.0.7 libfftw.so.2.0.7 + ln -s libsfftw_threads.a libfftw_threads.a + ln -s libsfftw_threads.so libfftw_threads.so + ln -s libsfftw_threads.so.2 libfftw_threads.so.2 + ln -s libsfftw_threads.so.2.0.7 libfftw_threads.so.2.0.7 + ln -s libsrfftw.a librfftw.a + ln -s libsrfftw.so librfftw.so + ln -s libsrfftw.so.2 librfftw.so.2 + ln -s libsrfftw.so.2.0.7 librfftw.so.2.0.7 + ln -s libsrfftw_threads.a librfftw_threads.a + ln -s libsrfftw_threads.so librfftw_threads.so + ln -s libsrfftw_threads.so.2 librfftw_threads.so.2 + ln -s libsrfftw_threads.so.2.0.7 librfftw_threads.so.2.0.7 } diff --git a/abs/core/fftw2/__changelog b/abs/core/fftw2/__changelog new file mode 100644 index 0000000..014bc64 --- /dev/null +++ b/abs/core/fftw2/__changelog @@ -0,0 +1,2 @@ +added !emptydir to options + |