]> git.pld-linux.org Git - packages/bam.git/blob - bam.spec
- proper URL
[packages/bam.git] / bam.spec
1 Summary:        Build system
2 Name:           bam
3 Version:        0.2.0
4 Release:        1
5 License:        zlib
6 Group:          Development/Building
7 Source0:        http://www.teeworlds.com/files/%{name}-%{version}.tar.gz
8 # Source0-md5:  d4efe74591a73c1cec8b34d76ffd1049
9 URL:            http://teeworlds.com/trac/bam/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 Bam is a build system with the focus on being having fast build times
14 and flexiable build scripts. Instead of having a custom language it
15 uses Lua to describe the build steps. It's written in clean C and is
16 distrubuted under the liberal zlib licence. Available on many
17 platforms including but not limited to Linux, Mac OS X and Windows.
18
19 %prep
20 %setup -q
21
22 %build
23 ./make_unix.sh
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27
28 install -D src/%{name} $RPM_BUILD_ROOT%{_bindir}/%{name}
29
30 %clean
31 rm -rf $RPM_BUILD_ROOT
32
33 %files
34 %defattr(644,root,root,755)
35 %doc docs/*.txt license.txt
36 %attr(755,root,root) %{_bindir}/%{name}
This page took 0.061982 seconds and 3 git commands to generate.