]> git.pld-linux.org Git - packages/fakechroot.git/commitdiff
- new
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Thu, 8 Sep 2005 21:24:09 +0000 (21:24 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    fakechroot.spec -> 1.1

fakechroot.spec [new file with mode: 0644]

diff --git a/fakechroot.spec b/fakechroot.spec
new file mode 100644 (file)
index 0000000..a8ce5a4
--- /dev/null
@@ -0,0 +1,45 @@
+Summary:       Provides a fake chroot environment to programs
+Name:          fakechroot
+Version:       2.3
+Release:       1
+License:       GPL
+Group:         Development/Tools
+Source0:       http://ftp.debian.org/debian/pool/main/f/fakechroot/%{name}_%{version}.tar.gz
+# Source0-md5: 9df72412f6a209a63bdac02d3088d604
+URL:           http://fakechroot.alioth.debian.org/
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define                _libdir         %{_prefix}/%{_lib}/libfakechroot
+
+%description
+fakechroot provides a fake chroot environment to programs. A fake
+chroot allows you to run programs which require root privileges on an
+unprivileged user account. For example, you can create a Debian
+bootstrap or a development environment and build packages inside a
+chroot'ed system using a standard non-root user account. You can then
+use the apt-get command to install other packages without root
+privileges.
+
+%prep
+%setup -q
+
+%build
+%configure \
+       --disable-static
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/*
+%dir %{_libdir}
+%attr(755,root,root) %{_libdir}/libfakechroot.so
+%{_mandir}/man1/*
This page took 0.095638 seconds and 4 git commands to generate.