diff options
-rw-r--r-- | development/lazarus/README | 11 | ||||
-rw-r--r-- | development/lazarus/lazarus.SlackBuild | 9 | ||||
-rw-r--r-- | development/lazarus/lazarus.info | 6 |
3 files changed, 14 insertions, 12 deletions
diff --git a/development/lazarus/README b/development/lazarus/README index 1d847a7edaf0..962953e38357 100644 --- a/development/lazarus/README +++ b/development/lazarus/README @@ -1,5 +1,6 @@ -Lazarus is a Rapid Application Development Tool for FreePascal. -It comes with the LCL - Lazarus component library, which contains platform -independent visual components like buttons, windows, checkbox, treeview and -many, many more. The LCL is platform independent, so you can write an -application once and then compile for various platforms without changing code. +Lazarus is a Rapid Application Development Tool for FreePascal. It +comes with the LCL - Lazarus Component Library, which contains platform +independent visual components like buttons, windows, checkbox, treeview +and many, many more. The LCL is platform independent, so you can write +an application once and then compile for various platforms without +changing code. diff --git a/development/lazarus/lazarus.SlackBuild b/development/lazarus/lazarus.SlackBuild index bc22075d0016..a3be723db531 100644 --- a/development/lazarus/lazarus.SlackBuild +++ b/development/lazarus/lazarus.SlackBuild @@ -22,7 +22,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=lazarus -VERSION=${VERSION:-1.6.0} +VERSION=${VERSION:-1.6.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -35,13 +35,14 @@ OUTPUT=${OUTPUT:-/tmp} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i386 ;; + i?86) ARCH=i586 ;; *) ARCH=$( uname -m ) ;; esac fi -if ! [[ "$ARCH" = "x86_64" || "$ARCH" = "i386" ]]; then - printf "\nThis won't build on $ARCH.\n\n";exit 1 +if [ "$ARCH" != "x86_64" ] && [ "$ARCH" != "i586" ] && [ "$ARCH" != "i686" ]; then + printf "\nThis won't build on $ARCH.\n\n" + exit 1 fi set -e diff --git a/development/lazarus/lazarus.info b/development/lazarus/lazarus.info index e202ecaa53b1..161b44588807 100644 --- a/development/lazarus/lazarus.info +++ b/development/lazarus/lazarus.info @@ -1,8 +1,8 @@ PRGNAM="lazarus" -VERSION="1.6.0" +VERSION="1.6.2" HOMEPAGE="http://www.lazarus.freepascal.org/" -DOWNLOAD="http://downloads.sourceforge.net/lazarus/lazarus-1.6.0-0.tar.gz" -MD5SUM="1857ee87efa9cb0fdecf8e414f4794ca" +DOWNLOAD="http://downloads.sourceforge.net/lazarus/lazarus-1.6.2-0.tar.gz" +MD5SUM="f9795043d81730fdc787ff621e65851c" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="fpc fpc-source" |