source: projects/specs/trunk/g/gyp/gyp-vl.spec @ 7608

Revision 7608, 1.5 KB checked in by daisuke, 11 years ago (diff)

update to new upstream snapshot

Line 
1%define ver     0.1
2%define rel     3
3%define svnrev  1569
4
5Summary: Generate Your Projects
6Name: gyp
7Version: %{ver}
8Release: %{rel}.svn%{svnrev}%{?_dist_release}
9License: BSD
10Group: Development/Tools
11URL: http://code.google.com/p/gyp/
12# svn checkout http://gyp.googlecode.com/svn/trunk gyp
13Source0: %{name}-%{version}-svn%{svnrev}.tar.bz2
14Patch0:         gyp-rpmoptflags.patch
15BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
16BuildArch: noarch
17BuildRequires: python-devel
18Requires: python
19
20Vendor: Project Vine
21Distribution: Vine Linux
22Packager: iwaim
23
24%description
25GYP is a tool to generates native Visual Studio, Xcode and SCons
26and/or make build files from a platform-independent input format.
27
28Its syntax is a universal cross-platform build representation
29that still allows sufficient per-platform flexibility to accommodate
30irreconcilable differences.
31
32%prep
33%setup -q -c -n %{name}-%{version}-svn%{svnrev}
34%patch0 -p1 -b .0-rpmoptflags
35
36%build
37%{__python} setup.py build
38
39%install
40%{__rm} -rf %{buildroot}
41%{__python} setup.py install --root %{buildroot}
42
43%clean
44%{__rm} -rf %{buildroot}
45
46%files
47%defattr(-,root,root,-)
48%doc LICENSE AUTHORS samples tools
49%{_bindir}/gyp
50%{python_sitelib}/gyp-*.egg-info
51%{python_sitelib}/gyp
52
53%changelog
54* Fri Mar 22 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.46-1
55- update to svn r1569
56
57* Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1-2.svn827
58- rebuild with python-2.7.2
59
60* Fri Jun  4 2010 IWAI, Masaharu <iwai@alib.jp> 0.1-1.svn827
61- Initial build.
62
Note: See TracBrowser for help on using the repository browser.