]> git.pld-linux.org Git - packages/bam.git/blame - bam.spec
- init
[packages/bam.git] / bam.spec
CommitLineData
7d0a5ac9 1Summary: Build system
2Name: bam
3Version: 0.2.0
4Release: 0.1
5License: zlib
6Group: Development/Building
7Source0: http://www.teeworlds.com/files/%{name}-%{version}.tar.gz
8# Source0-md5: d4efe74591a73c1cec8b34d76ffd1049
9URL: http://teeworlds.com/trac/bam/browser/releases/
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12%description
13Bam is a build system with the focus on being having fast build times
14and flexiable build scripts. Instead of having a custom language it
15uses Lua to describe the build steps. It's written in clean C and is
16distrubuted under the liberal zlib licence. Available on many
17platforms 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
26rm -rf $RPM_BUILD_ROOT
27
28install -D src/%{name} $RPM_BUILD_ROOT%{_bindir}/%{name}
29
30%clean
31rm -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.148854 seconds and 4 git commands to generate.