source: projects/specs/trunk/a/automoc4/automoc4-vl.spec @ 521

Revision 521, 1.4 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Name: automoc4
2Version: 0.9.88
3Release: 2%{?_dist_release}
4Summary: automatic moc for Qt 4 packages
5Source: %{name}-%{version}.tar.bz2
6Group: Development/Languages
7License: BSD
8
9BuildRoot: %{_tmppath}/%{name}-%{version}-root
10BuildRequires: qt4-devel cmake
11
12%description
13This package contains the automoc4 binary which is used to run moc
14on the right binaries in a Qt 4 or KDE 4 application.
15
16Moc is the meta object compiler which is a much used tool when using
17the Qt toolkit.
18
19%prep
20%setup -q
21
22%build
23mkdir -p %{_target_platform}
24pushd %{_target_platform}
25unset QTDIR || : ; . /etc/profile.d/qt4.sh
26%cmake ..
27popd
28
29make %{?_smp_mflags} -C %{_target_platform}
30
31%install
32rm -rf $RPM_BUILD_ROOT
33
34make install/fast DESTDIR=$RPM_BUILD_ROOT -C %{_target_platform}
35
36%clean
37rm -rf $RPM_BUILD_ROOT
38
39%files
40%defattr(-,root,root)
41%{_bindir}/*
42%{_libdir}/automoc4/*
43
44%changelog
45* Sun Feb  7 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.9.88-2
46- rebuilt with new toolchains
47
48* Thu Feb 19 2009 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.88-1
49- new upstream release
50
51* Mon Nov 24 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.87-1
52- new upstream release
53
54* Thu Oct 09 2008 Shu KONNO <owa@bg.wakwak.com> 0.9.84-2
55- added script to append qmake path
56- modified library path for x86_64
57
58* Tue Sep 30 2008 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.9.84-1
59- initial release for VineSeed
60
Note: See TracBrowser for help on using the repository browser.