aboutsummaryrefslogtreecommitdiff
path: root/autotools-template.SlackBuild
AgeCommit message (Collapse)Author
2023-05-13*.SlackBuild: Add arch specific handling for aarch6415.0Heinz Wiesinger
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-03autotools-template.SlackBuild: Don't ship .la filesHeinz Wiesinger
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-03*.SlackBuild: Support $PRINT_PACKAGE_NAME env varHeinz Wiesinger
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-03*.SlackBuild: SlackBuilds run in the directory they are inHeinz Wiesinger
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-03*.SlackBuild: Change shebang to /bin/bashHeinz Wiesinger
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2020-06-29autotools: Add --disable-static as default.Willy Sudiarto Raharjo
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2016-07-09*.SlackBuild: Switch to i586.Willy Sudiarto Raharjo
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2013-12-07templates: Small whitespace fixup to calm the OCD.dsomero
2013-11-11templates: check for mode 750 in permissionsRobby Workman
Thanks to Nick Warne <nick@linicks.net> for the suggestion.
2013-11-03*-template.SlackBuild: Fix "find -L ." usageRobby Workman
Thanks to willysr for pointing out my thinko.
2013-10-30*.SlackBuild: Add "-L" to the permissions-fixing find invocationRobby Workman
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.
2013-10-30templates: check for mode 640 in permissionsRobby Workman
Thanks to Nick Warne <nick@linicks.net> for the suggestion.
2012-09-18*.SlackBuild: strongly suggest BSD/MIT licenseRobby Workman
2010-10-02autotools-template: xargs -0 expects -print0 option from findHeinz Wiesinger
2010-10-02autotools-template: fix stripping files with single quotes in filenameHeinz Wiesinger
2010-06-01Renamed template.SlackBuild to autotools-template.SlackBuildRobby Workman