Changes of Revision 2
[-] | Added | arts++.spec |
x 1
2 +Name: arts++ 3 +Version: 1.1.a13 4 +Release: 1 5 +Group: Development 6 +Summary: 7 +License: unknown 8 +Source0: %{name}-%{version}.tar.gz 9 +Patch0: %{name}-%{version}.patch 10 +BuildRoot: %{_tmppath}/%{name}-%{version}-build 11 +BuildRequires: flex 12 + 13 +%if 0%{?suse_version} 14 +%define _docroot /srv/www 15 +%endif 16 + 17 +%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} 18 +%define _docroot /var/www 19 +%endif 20 + 21 +%description 22 +ARTS is a binary file format specification for storing network data. 23 +Initial ly developed at ANS by David Bolen in 1992, ARTS was licensed to CAIDA in March of 1998. 24 + 25 +CAIDA has developed a C++ class library for ARTS. This work is separate from the software licensed from ANS. 26 +The C++ class library is used by the CAIDA packages cflowd and skitter. In addition to the class library, 27 +CAIDA distributes some simple applications for viewing and manipulating ARTS data. The entire package is called arts++. 28 + 29 + 30 +%prep 31 +%setup 32 +%patch0 -p1 33 + 34 +%configure 35 + 36 +%build 37 +%__make 38 + 39 +%install 40 +export DESTDIR=%{buildroot} 41 +export HTDOCDIR=%{_docroot} 42 +%__make DESTDIR=%{buildroot} HTDOCDIR=%{_docroot} install 43 + 44 + 45 +%clean 46 +rm -rf %{buildroot} 47 + 48 + 49 +%files 50 +%defattr(-,root,root) 51 +%doc ChangeLog INSTALL WishList 52 + 53 |
||
[+] | Deleted | arts.spec ^ |
@@ -1,51 +0,0 @@ -Name: arts++ -Version: 1.1.a13 -Release: 1 -Group: Development -Summary: -License: unknown -Source0: %{name}-%{version}.tar.gz -Patch0: %{name}-%{version}.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: flex - -%if 0%{?suse_version} -%define _docroot /srv/www -%endif - -%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} -%define _docroot /var/www -%endif - -%description -ARTS is a binary file format specification for storing network data. -Initial ly developed at ANS by David Bolen in 1992, ARTS was licensed to CAIDA in March of 1998. - -CAIDA has developed a C++ class library for ARTS. This work is separate from the software licensed from ANS. -The C++ class library is used by the CAIDA packages cflowd and skitter. In addition to the class library, -CAIDA distributes some simple applications for viewing and manipulating ARTS data. The entire package is called arts++. - - -%prep -%setup -%patch0 -p1 - -%configure - -%build -%__make - -%install -export DESTDIR=%{buildroot} -export HTDOCDIR=%{_docroot} -%__make DESTDIR=%{buildroot} HTDOCDIR=%{_docroot} install - - -%clean -rm -rf %{buildroot} - - -%files -%defattr(-,root,root) -%doc ChangeLog INSTALL WishList - |