| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
|
|
|
|
| |
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
|
|
|
|
|
| |
Clarify that method #1 is preferred and method #2 requires
modules which are non-core in perl-5.22.
|
|
|
|
| |
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- INSTALLVENDORMAN1DIR=/usr/man/man1 is now set during build method #1,
so man pages in section 1 are installed in a location supported by
Slackware
- The options "prefix" and "installdirs" that are passed to Build.PL in
build method #2 are now correctly recognised
- "destdir" is now passed to `./Build install` instead of Build.PL in
build method #2, as recommended by the Module::Build::Cookbook
documentation
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
|
| |
|
|
|
|
| |
Thanks to Nick Warne <nick@linicks.net> for the suggestion.
|
|
|
|
| |
Thanks to willysr for pointing out my thinko.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From: Serg Bormant <bormant@gmail.com>
Subject: [Slackbuilds-users] [BUG] SlackBuild templates
Date: Fri, 21 Dec 2012 11:58:32 +0400
Hi,
Consider something like this in source tarball:
$ mkdir test; cd test
$ mkdir docs; touch docs/README docs/COPYING
$ ln -s docs/* .
$ ls -o *
lrwxrwxrwx 1 user 12 Dec 21 11:45 COPYING -> docs/COPYING
lrwxrwxrwx 1 user 11 Dec 21 11:45 README -> docs/README
docs:
total 0
-rw-r--r-- 1 user 0 Dec 21 11:45 COPYING
-rw-r--r-- 1 user 0 Dec 21 11:45 README
*.SlackBuild templates offer this to sanitize permissions:
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm
400 \) \
-exec chmod 644 {} \;
But -perm 777 will fire on symlinks and will set eXecutable permissions to
docs/COPYING and docs/README.
Using "find -L ..." or "... ! -type l ..." can help to avoid this.
|
|
|
|
| |
Thanks to Nick Warne <nick@linicks.net> for the suggestion.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Thanks to V'yacheslav Stetskevych for the tip.
|
| |
|
| |
|
|
|