aboutsummaryrefslogtreecommitdiff
path: root/branches/0.6/mkbuild
diff options
context:
space:
mode:
authorrudson <rudson@04377dda-e619-0410-9926-eae83683ac58>2007-06-14 17:30:30 +0000
committerrudson <rudson@04377dda-e619-0410-9926-eae83683ac58>2007-06-14 17:30:30 +0000
commit16b7a652226aa1646a59bdebeee520465e171e8d (patch)
treee548753d1e410cd6702959c88c63a06ab8461684 /branches/0.6/mkbuild
parent8ebd43dbcf8c805b1130a47af371a1d129aafa40 (diff)
downloadsimplepkg-16b7a652226aa1646a59bdebeee520465e171e8d.tar.gz
simplepkg-16b7a652226aa1646a59bdebeee520465e171e8d.tar.bz2
mkbuild-0.9.3
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@387 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'branches/0.6/mkbuild')
-rw-r--r--branches/0.6/mkbuild/generic.mkSlackBuild.new3
-rw-r--r--branches/0.6/mkbuild/sample-Pyrex.mkbuild42
2 files changed, 22 insertions, 23 deletions
diff --git a/branches/0.6/mkbuild/generic.mkSlackBuild.new b/branches/0.6/mkbuild/generic.mkSlackBuild.new
index 4813471..c2177f9 100644
--- a/branches/0.6/mkbuild/generic.mkSlackBuild.new
+++ b/branches/0.6/mkbuild/generic.mkSlackBuild.new
@@ -94,8 +94,7 @@ mkdir -p "$REPOS" || exit $ERROR_MKDIR
<download_source> off
# Dowload source if necessary
-EXTENSION="[[EXTENSION]]"
-SRC="[[CONSTRUCTION SOURCE NAME STRING]]"
+SRC="[[SOURCE NAME CONSTRUCTION STRING]]"
URL="[[DOWNLOAD FOLDER URL]]/$SRC"
if [ ! -s "$SRC_DIR/$SRC" ] || ! [[DECOMPRESSOR]] [[DECOMPRESSOR TEST FLAG]] "$SRC_DIR/$SRC" 2> /dev/null; then
diff --git a/branches/0.6/mkbuild/sample-Pyrex.mkbuild b/branches/0.6/mkbuild/sample-Pyrex.mkbuild
index e3a3a1d..0686d69 100644
--- a/branches/0.6/mkbuild/sample-Pyrex.mkbuild
+++ b/branches/0.6/mkbuild/sample-Pyrex.mkbuild
@@ -2,10 +2,10 @@
# Personal variables
#--------------------
# Author name
-AUTHOR="Rudson R. Alves"
+[[SLACKBUILD AUTHOR]]="Rudson R. Alves"
# Initials author name
-AUTHOR_INITIALS="rra"
+[[SLACKBUILD AUTHOR INITIALS]]="rra"
#------------------------
# Construction Variables
@@ -13,70 +13,70 @@ AUTHOR_INITIALS="rra"
#
# Source base name. if different from package name. Null ("") to default value.
# Auto-set, get SRC_NAME from URL: http://.../$SRC_NAME-$VERSION.tar.$EXTENSION'
-SRC_NAME="Pyrex"
+[[SOURCE NAME]]="Pyrex"
# Package name. Null ("") to auto-set
# Auto-set, get PKG_NAME from URL downcase(SRC_NAME): http://.../$SRC_NAME-$VERSION.tar.$EXTENSION'
-PKG_NAME=""
+[[PACKAGE NAME]]=""
#
# Source Name construction string
# Default value is: $SRC_NAME-$VERSION.tar.$EXTENSION
-#CONST_STRING="SOURCE NAME CONSTRUCTION STRING"
-CONST_STRING="$SRC_NAME-$VERSION.tar.$EXTENSION"
+#[[SOURCE NAME CONSTRUCTION STRING]]="SOURCE NAME CONSTRUCTION STRING"
+[[SOURCE NAME CONSTRUCTION STRING]]="$SRC_NAME-$VERSION.tar.$EXTENSION"
#
# Complete URL address or URL base address ( without $SRC_NAME-$VERSION... )
-#URL="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/Pyrex-0.9.5.1a.tar.gz"
-URL="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/"
+#[[DOWNLOAD FOLDER URL]]="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/Pyrex-0.9.5.1a.tar.gz"
+[[DOWNLOAD FOLDER URL]]="http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/"
#
# Package version. Null ("") to auto-set.
# Auto-set, get VERSION from URL: http://.../$SRC_NAME-$VERSION.tar.$EXTENSION'
-VERSION="0.9.5.1a"
+[[VERSION]]="0.9.5.1a"
#
# Package extension. Null ("") to auto-set
# Auto-set, get EXTENSION from URL: http://.../$SRC_NAME-$VERSION.tar.$EXTENSION'
-EXTENSION="gz"
+[[EXTENSION]]="gz"
#
# Dependency list input
# Enter string: "dependency_1 [condiction_1] [versio_1]: dependency_2 [condiction_2] [versio_2]"
# Example:
-SLACK_REQUIRED="dep1 >= 1.1.1: dep2 >= 2.2.2:dep3:dep4:dep5 = 1.0"
-# SLACK_REQUIRED=""
+[[SLACK REQUIRED]]="dep1 >= 1.1.1: dep2 >= 2.2.2:dep3:dep4:dep5 = 1.0"
+#[[SLACK_REQUIRED]]=""
#
# Decompress program
# gz, tgz, bz2, set null ("") to auto-set
# Auto-set, get DECOMPRESSOR from URL EXTENSION: http://.../$SRC_NAME-$VERSION.tar.$EXTENSION'
-DECOMPRESSOR=""
+[[DECOMPRESSOR]]=""
#
# Decompress check flag
# gz, tgz, bz2, set null ("") to auto-set
-DECOMPRESSOR_TEST_FLAG=""
+[[DECOMPRESSOR TEST FLAG]]=""
#
# Documentation files. Null ("") to auto-set commom doc-files:
# NEWS TODO README AUTHORS INSTALL ChangeLog MAINTAINERS COPYING readme.*
-DOCFILES=""
+[[DOCUMENTATION FILES]]=""
#
# ./configure options
-OPTIONS=""
+[[OTHER CONFIGURE ARGS]]=""
#
# PREFIX. Default /usr
-PREFIX="/usr"
+[[PREFIX]]="/usr"
#
# Number of jobs
-NUMJOBS="-j7"
+[[NUMBER OF JOBS]]="-j7"
#---------------------
-# News changes
+# Others changes
#---------------------
#[[PATCH FILES]]=""
[[MD5SUM CODE]]="5a1bb7c76162a987a1d5040ea2d1f670"
@@ -89,7 +89,7 @@ NUMJOBS="-j7"
# SlackBuild Sections
#---------------------
# SlackBuild model
-MODEL="generic.mkSlackBuild"
+[[SLACKBUILD MODEL]]="generic.mkSlackBuild"
#
# Default enable sections:
# head, set_variables, slkflags, start_structure, untar_source,
@@ -146,7 +146,7 @@ pyrex:
cd "$TMP"
# Uncompress e untar source
-gunzip | tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR
+gunzip "$SRC_DIR/$SRC" | tar --no-same-owner --no-same-permissions -xvf || exit $ERROR_TAR
# Change to source dir
cd "$PKG_SRC"