2008-10-21 06:36:29 +02:00
|
|
|
# Template file for 'fakeroot'
|
|
|
|
pkgname=fakeroot
|
2011-06-14 15:25:09 +02:00
|
|
|
version=1.16
|
2009-12-20 16:05:42 +01:00
|
|
|
distfiles="${DEBIAN_SITE}/main/f/fakeroot/${pkgname}_${version}.orig.tar.bz2"
|
2008-10-21 06:36:29 +02:00
|
|
|
build_style=gnu_configure
|
|
|
|
short_desc="Gives a fake root environment"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-14 15:25:09 +02:00
|
|
|
homepage="http://packages.debian.org/fakeroot"
|
|
|
|
license="GPL-3"
|
|
|
|
checksum=1861c621034dbadca015b145e020a3e90d2cedfca1907899a8019bb16980910a
|
2008-10-21 06:36:29 +02:00
|
|
|
long_desc="
|
2010-01-15 20:08:17 +01:00
|
|
|
This package is intended to remove the need to become root for a package build.
|
|
|
|
This is done by setting LD_PRELOAD to libfakeroot.so, which provides wrappers
|
|
|
|
around getuid, chown, chmod, mknod, stat, and so on, thereby creating a fake
|
|
|
|
root environment."
|
2008-10-21 06:36:29 +02:00
|
|
|
|
2010-01-15 20:08:17 +01:00
|
|
|
base_chroot=yes
|
|
|
|
Add_dependency run glibc
|
2010-04-21 16:50:53 +02:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# Use /bin/sh shebang.
|
|
|
|
sed -i -e "s|^#!/bin/bash$|#!/bin/sh|" ${DESTDIR}/usr/bin/fakeroot
|
|
|
|
}
|