]> git.pld-linux.org Git - packages/abr2gbr.git/blame - abr2gbr.spec
- new
[packages/abr2gbr.git] / abr2gbr.spec
CommitLineData
bd3ae9d4
ER
1Summary: abr2gbr
2Name: abr2gbr
3Version: 1.0.2
4Release: 1
5License: GPL v2
6Group: Applications/Graphics
7Source0: http://the.sunnyspot.org/gimp/tools/%{name}-%{version}.tgz
8# Source0-md5: edecc74a3df1ce858ec641de9a098cdf
9URL: http://the.sunnyspot.org/gimp/tools.html
10BuildRequires: glib-devel
11BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13%description
14Converts PhotoShop .ABR and Paint Shop Pro .JBR brushes to GIMP .GBR.
15
16ABR files can hold many bushes within a single file and GIMP's GBR format was
17build only for single brushes. This tool simply extract each brush and save it
18into a separate GBR file.
19
20Actually abr2gbr can decode only ABR files with format version less or equal to
211, format version 2 is undocumented
22
23%prep
24%setup -qc
25
26%build
27%{__make} -C src
28
29%install
30rm -rf $RPM_BUILD_ROOT
31install -d $RPM_BUILD_ROOT%{_bindir}
32install src/abr2gbr $RPM_BUILD_ROOT%{_bindir}
33ln -s abr2gbr $RPM_BUILD_ROOT%{_bindir}/jbr2gbr
34
35%clean
36rm -rf $RPM_BUILD_ROOT
37
38%files
39%defattr(644,root,root,755)
40%doc src/TODO
41%attr(755,root,root) %{_bindir}/abr2gbr
42%attr(755,root,root) %{_bindir}/jbr2gbr
This page took 0.053045 seconds and 4 git commands to generate.