mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
development/lazarus: Updated for version 1.6.2.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
845db76951
commit
6a49973171
3 changed files with 14 additions and 12 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue