summaryrefslogtreecommitdiffstats
path: root/test/fftw/fftw.install
diff options
context:
space:
mode:
authorfanch <fanchyannmaria at orange dot fr>2010-06-25 23:21:12 +0200
committerfanch <fanchyannmaria at orange dot fr>2010-06-25 23:21:12 +0200
commit310f8b7fafebd328cfeb3bc6ac5454786010c866 (patch)
tree88b4c1935bb18fded6f7ea869e2028cc0c771657 /test/fftw/fftw.install
parent7b6fa09248f85ebe415e84e54d30b8145442a3d3 (diff)
parent2e119531564ecac7a8196d9384fc46f3e856f6ba (diff)
downloadnutyx-extra-310f8b7fafebd328cfeb3bc6ac5454786010c866.tar.gz
nutyx-extra-310f8b7fafebd328cfeb3bc6ac5454786010c866.tar.bz2
nutyx-extra-310f8b7fafebd328cfeb3bc6ac5454786010c866.tar.xz
nutyx-extra-310f8b7fafebd328cfeb3bc6ac5454786010c866.zip
Merge remote branch 'nutyx-attapu/master'
Diffstat (limited to 'test/fftw/fftw.install')
-rw-r--r--test/fftw/fftw.install22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/fftw/fftw.install b/test/fftw/fftw.install
new file mode 100644
index 000000000..a3748aae1
--- /dev/null
+++ b/test/fftw/fftw.install
@@ -0,0 +1,22 @@
+info_dir=/usr/share/info
+info_files=(fftw3.info)
+
+post_install() {
+ for f in ${info_files[@]}; do
+ install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ for f in ${info_files[@]}; do
+ install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+ done
+}
+
+
+
+