123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- Name: wordnet
- Version: 3.0
- Release: 1%{?_dist_release}
- Summary: WordNet English lexical reference system
- License: Distributable
- Group: Applications/Text
- Url: http://wordnet.princeton.edu/
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Susumu Tanimura <stanimura-ngs@umin.ac.jp>
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Source0: ftp://ftp.cogsci.princeton.edu/pub/wordnet/3.0/WordNet-%{version}.tar.bz2
- BuildPreReq: tcl tk
- %description
- WordNet is an online lexical reference system whose design is
- inspired by current psycholinguistic theories of human lexical
- memory. English nouns, verbs, adjectives and adverbs are organized
- into synonym sets, each representing one underlying lexical concept.
- Different relations link the synonym sets.
- WordNet was developed by the Cognitive Science Laboratory at
- Princeton University under the direction of Professor George A.
- Miller (Principal Investigator). Over the years, many people have
- contributed to the success of WordNet.
- %package tk
- Summary: Tcl/tk frontend WordNet English lexical reference system
- Group: Applications/Text
- Requires: %{name}
- %description tk
- WordNet is an online lexical reference system whose design is
- inspired by current psycholinguistic theories of human lexical
- memory. English nouns, verbs, adjectives and adverbs are organized
- into synonym sets, each representing one underlying lexical concept.
- Different relations link the synonym sets.
- WordNet was developed by the Cognitive Science Laboratory at
- Princeton University under the direction of Professor George A.
- Miller (Principal Investigator). Over the years, many people have
- contributed to the success of WordNet.
- %package -n lib%{name}
- Summary: Library for WordNet English lexical reference system
- Group: System Environment/Libraries
- Requires: %{name}
- %description -n lib%{name}
- WordNet is an online lexical reference system whose design is
- inspired by current psycholinguistic theories of human lexical
- memory. English nouns, verbs, adjectives and adverbs are organized
- into synonym sets, each representing one underlying lexical concept.
- Different relations link the synonym sets.
- WordNet was developed by the Cognitive Science Laboratory at
- Princeton University under the direction of Professor George A.
- Miller (Principal Investigator). Over the years, many people have
- contributed to the success of WordNet.
- %package -n lib%{name}-devel
- Summary: Includes for WordNet English lexical reference system
- Group: Development/Libraries
- Requires: lib%{name}
- %description -n lib%{name}-devel
- WordNet is an online lexical reference system whose design is
- inspired by current psycholinguistic theories of human lexical
- memory. English nouns, verbs, adjectives and adverbs are organized
- into synonym sets, each representing one underlying lexical concept.
- Different relations link the synonym sets.
- WordNet was developed by the Cognitive Science Laboratory at
- Princeton University under the direction of Professor George A.
- Miller (Principal Investigator). Over the years, many people have
- contributed to the success of WordNet.
- %prep
- %setup -q -n WordNet-%{version}
- %build
- %configure
- %{__make}
- %install
- rm -rf $RPM_BUILD_ROOT
- %makeinstall \
- dictdir=%{buildroot}%{_datadir}/%{name} \
- htmldir=%{buildroot}%{_datadir}/%{name}/html \
- pdfdir=%{buildroot}%{_datadir}/%{name}/pdf \
- psdir=%{buildroot}%{_datadir}/%{name}/ps \
- %post
- %postun
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root)
- %doc AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS README
- %{_bindir}/wn
- %{_prefix}/lib/wnres
- %{_datadir}/%{name}
|