]> git.pld-linux.org Git - packages/autopsy.git/commitdiff
- adapter
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 30 Oct 2006 22:35:46 +0000 (22:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    autopsy.spec -> 1.3

autopsy.spec

index df08169d6da12c9d5c53d2b57ab59d415b7a01e0..a8c95cfd66e9484246cced8017862a7fe39b1e20 100644 (file)
@@ -11,58 +11,56 @@ Release:    0.1
 #Epoch:                -
 License:       GPL
 Group:         Applications
-Source0:       http://mesh.dl.sourceforge.net/sourceforge/autopsy/%{name}-%{version}.tar.gz
+Source0:       http://dl.sourceforge.net/autopsy/%{name}-%{version}.tar.gz
 # Source0-md5: 0ac9db9acf66742f8f01f3d8b0cf2f90
 URL:           http://www.sleuthkit.org/autopsy
 Requires:      coreutils
-Requires:      perl-Date-Manip
-Requires:      openssl
 Requires:      libmagic
+Requires:      openssl
+Requires:      perl-Date-Manip
 Requires:      sleuthkit
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 The Autopsy Forensic Browser is a graphical interface to utilities
-found in The Sleuth Kit (TSK).  TSK is a collection of command line
+found in The Sleuth Kit (TSK). TSK is a collection of command line
 tools that allow you to investigate a Windows or Unix system by
-examining the hard disk contents.  TSK and Autopsy will show you
-the files, data units, and metadata of NTFS, FAT, EXTxFS, and UFS
-file system images in a read-only environment.  Autopsy allows you
-to search for specific types of evidence based on keywords, MAC
-times, hash values, and file types.
+examining the hard disk contents. TSK and Autopsy will show you the
+files, data units, and metadata of NTFS, FAT, EXTxFS, and UFS file
+system images in a read-only environment. Autopsy allows you to search
+for specific types of evidence based on keywords, MAC times, hash
+values, and file types.
 
 %prep
 %setup -q
 
-%build
-
-echo "#!/usr/bin/perl -wT" > autopsy
-echo "use lib qw(/usr/share/perl5/vendor_perl/Autopsy);" >> autopsy
-echo "use lib qw(/usr/share/perl5/vendor_perl/Autopsy/lib);" >> autopsy
+echo "#!%{_bindir}/perl -wT" > autopsy
+echo "use lib qw(%{perl_vendorlib}/Autopsy);" >> autopsy
+echo "use lib qw(%{perl_vendorlib}/Autopsy/lib);" >> autopsy
 cat base/autopsy.base >> autopsy
 
 cat > conf.pl <<-EOF
        # Autopsy configuration settings
-       
+
        # when set to 1, the server will stop after it receives no
-       # connections for STIMEOUT seconds. 
+       # connections for STIMEOUT seconds.
        \$USE_STIMEOUT = 0;
        \$STIMEOUT = 3600;
-       
+
        # number of seconds that child waits for input from client
        \$CTIMEOUT = 15;
-       
+
        # set to 1 to save the cookie value in a file (for scripting)
        \$SAVE_COOKIE = 1;
-       
-       \$INSTALLDIR = '/usr/share/perl5/vendor_perl/Autopsy/';
-       
+
+       \$INSTALLDIR = '%{perl_vendorlib}/Autopsy/';
+
        # System Utilities
        \$GREP_EXE = '/bin/grep';
-       
+
        # Directories
-       \$TSKDIR = '/usr/bin';
-       \$FILE_EXE = '/usr/bin/file';
+       \$TSKDIR = '%{_bindir}';
+       \$FILE_EXE = '%{_bindir}/file';
        \$NSRLDB = '';
        \$LOCKDIR = '/home/services/autopsy';
 EOF
@@ -74,12 +72,12 @@ install -d $RPM_BUILD_ROOT%{_bindir}
 install -d $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
 install -d $RPM_BUILD_ROOT%{_mandir}/man1
 install -d $RPM_BUILD_ROOT/home/services/autopsy
-install -d $RPM_BUILD_ROOT/usr/share/perl5/vendor_perl/Autopsy/{lib,pict}
+install -d $RPM_BUILD_ROOT%{perl_vendorlib}/Autopsy/{lib,pict}
 
 install autopsy $RPM_BUILD_ROOT%{_bindir}
-install conf.pl $RPM_BUILD_ROOT/usr/share/perl5/vendor_perl/Autopsy/
-install lib/* $RPM_BUILD_ROOT/usr/share/perl5/vendor_perl/Autopsy/lib
-install pict/* $RPM_BUILD_ROOT/usr/share/perl5/vendor_perl/Autopsy/pict
+install conf.pl $RPM_BUILD_ROOT%{perl_vendorlib}/Autopsy/
+install lib/* $RPM_BUILD_ROOT%{perl_vendorlib}/Autopsy/lib
+install pict/* $RPM_BUILD_ROOT%{perl_vendorlib}/Autopsy/pict
 
 install man/man1/* $RPM_BUILD_ROOT%{_mandir}/man1
 
@@ -98,8 +96,8 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc README.txt docs/sleuthkit-informer-13.txt
 %attr(755,root,root) %{_bindir}/*
-/usr/share/perl5/vendor_perl/Autopsy/conf.pl
-/usr/share/perl5/vendor_perl/Autopsy/lib/*
-/usr/share/perl5/vendor_perl/Autopsy/pict/*
+%{perl_vendorlib}/Autopsy/conf.pl
+%{perl_vendorlib}/Autopsy/lib/*
+%{perl_vendorlib}/Autopsy/pict/*
 %{_mandir}/man1/*
 /home/services/autopsy
This page took 0.105908 seconds and 4 git commands to generate.