diff options
Diffstat (limited to 'source/a/aaa_base/aaa_base.SlackBuild')
-rwxr-xr-x | source/a/aaa_base/aaa_base.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/source/a/aaa_base/aaa_base.SlackBuild b/source/a/aaa_base/aaa_base.SlackBuild index 29759144..b41e9545 100755 --- a/source/a/aaa_base/aaa_base.SlackBuild +++ b/source/a/aaa_base/aaa_base.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009, 2010, 2011 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2008, 2009, 2010, 2011, 2012 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -20,8 +20,8 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=13.37 -BUILD=${BUILD:-3} +VERSION=14.0 +BUILD=${BUILD:-5} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -37,6 +37,7 @@ CWD=$(pwd) TMP=${TMP:-/tmp} PKG=$TMP/package-aaa_base +rm -rf $PKG mkdir -p $TMP $PKG # Explode the package framework: @@ -51,6 +52,9 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cp -a $CWD/slackware-version $PKG/etc/slackware-version chown root:root $PKG/etc/slackware-version chmod 644 $PKG/etc/slackware-version +cp -a $CWD/os-release $PKG/etc/os-release +chown root:root $PKG/etc/os-release +chmod 644 $PKG/etc/os-release # Add lib64 directories on x86_64: if [ "$ARCH" = "x86_64" ]; then |