mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/fakeroot: Updated for version 1.8.2
This commit is contained in:
parent
8be17dacce
commit
bf106ddbcf
3 changed files with 22 additions and 15 deletions
|
@ -7,7 +7,7 @@
|
|||
set -e
|
||||
|
||||
PRGNAM=fakeroot
|
||||
VERSION=1.5.10
|
||||
VERSION=1.8.2
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -29,7 +29,7 @@ rm -rf $PRGNAM-$VERSION
|
|||
tar xzf $CWD/${PRGNAM}_$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
chmod -R u+rw,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
@ -38,6 +38,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man
|
||||
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
|
||||
|
@ -48,11 +49,11 @@ make DESTDIR=$PKG install
|
|||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS BUGS COPYING DEBUG INSTALL README.fake doc/README.saving \
|
||||
cp -a AUTHORS BUGS COPYING DEBUG INSTALL README doc/README.saving \
|
||||
debian/changelog $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
|
@ -61,5 +62,3 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
|
|||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="fakeroot"
|
||||
VERSION="1.5.10"
|
||||
VERSION="1.8.2"
|
||||
HOMEPAGE="http://packages.debian.org/fakeroot"
|
||||
DOWNLOAD="http://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.5.10.tar.gz"
|
||||
MD5SUM="76730bf4c9068773e857e18c346d8c81"
|
||||
DOWNLOAD="http://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_1.8.2.tar.gz"
|
||||
MD5SUM="782a1b78dca79da13e2f0e3f566ed06d"
|
||||
MAINTAINER="Ferenc Deak"
|
||||
EMAIL="ferenc.deak@gmail.com"
|
||||
APPROVED="danieldk"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,10 +1,18 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
fakeroot: fakeroot (Gives a fake root environment)
|
||||
fakeroot:
|
||||
fakeroot: Fakeroot makes it possible to run commands in an environment faking
|
||||
fakeroot: root privileges. This is done by setting LD_PRELOAD to libfakeroot.so,
|
||||
fakeroot: which provides wrappers around getuid, chown, chmod, mknod, stat, and
|
||||
fakeroot: so on, thereby creating a fake root environment.
|
||||
fakeroot:
|
||||
fakeroot: Fakeroot makes it possible to run commands in an environment
|
||||
fakeroot: faking root privileges. This is done by setting LD_PRELOAD to
|
||||
fakeroot: libfakeroot.so, which provides wrappers around getuid, chown,
|
||||
fakeroot: chmod, mknod, stat, and so on, thereby creating a fake root
|
||||
fakeroot: environment.
|
||||
fakeroot:
|
||||
fakeroot:
|
||||
fakeroot:
|
||||
|
|
Loading…
Reference in a new issue