[arch-commits] Commit in tolua++/repos (6 files)

Sven-Hendrik Haase svenstaro at nymeria.archlinux.org
Mon Dec 2 11:24:35 UTC 2013


    Date: Monday, December 2, 2013 @ 12:24:35
  Author: svenstaro
Revision: 101855

archrelease: copy trunk to community-i686, community-x86_64

Added:
  tolua++/repos/community-i686/
  tolua++/repos/community-i686/PKGBUILD
    (from rev 101854, tolua++/trunk/PKGBUILD)
  tolua++/repos/community-i686/config_linux.py
    (from rev 101854, tolua++/trunk/config_linux.py)
  tolua++/repos/community-x86_64/
  tolua++/repos/community-x86_64/PKGBUILD
    (from rev 101854, tolua++/trunk/PKGBUILD)
  tolua++/repos/community-x86_64/config_linux.py
    (from rev 101854, tolua++/trunk/config_linux.py)

----------------------------------+
 community-i686/PKGBUILD          |   35 +++++++++++++++++++++++++++++++++++
 community-i686/config_linux.py   |   22 ++++++++++++++++++++++
 community-x86_64/PKGBUILD        |   35 +++++++++++++++++++++++++++++++++++
 community-x86_64/config_linux.py |   22 ++++++++++++++++++++++
 4 files changed, 114 insertions(+)

Copied: tolua++/repos/community-i686/PKGBUILD (from rev 101854, tolua++/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-12-02 11:24:35 UTC (rev 101855)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Chirantan Ekbote <ekbotec at chromium.org>
+# Contributer: Doug Newgard <scimmia22 at outlook dot com>
+# Contributer: Stéphane Gaudreault <stephane.gaudreault at gmail.com>
+
+pkgname=tolua++
+pkgver=1.0.93
+pkgrel=1
+pkgdesc="Tool to integrate C/C++ code with Lua"
+arch=('i686' 'x86_64')
+url="http://www.codenix.com/~tolua"
+license=('MIT')
+depends=('lua51')
+makedepends=('scons')
+options=('staticlibs')
+source=(http://www.codenix.com/~tolua/${pkgname}-${pkgver}.tar.bz2
+        config_linux.py)
+md5sums=('100aa6907b8108582080b37d79c0afd7'
+         '69ad5067084cec2924f172bb04700da6')
+provides=('toluapp')
+
+build() {
+    cd ${pkgname}-${pkgver}
+    cp ../config_linux.py "${srcdir}"/${pkgname}-${pkgver}
+
+    scons all
+}
+
+package() {
+    cd ${pkgname}-${pkgver}
+    scons prefix="${pkgdir}/usr" install
+
+    # install license files
+    install -Dm644 "$srcdir/${pkgname}-${pkgver}/COPYRIGHT" "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
+}

Copied: tolua++/repos/community-i686/config_linux.py (from rev 101854, tolua++/trunk/config_linux.py)
===================================================================
--- community-i686/config_linux.py	                        (rev 0)
+++ community-i686/config_linux.py	2013-12-02 11:24:35 UTC (rev 101855)
@@ -0,0 +1,22 @@
+## This is the linux configuration file
+# This file was adapted to be used with ArchLinux
+# Use 'scons -h' to see the list of command line options available
+
+# Compiler flags (based on ArchLinux's installation of lua)
+#LINKFLAGS = ['-g']
+CCFLAGS = ['-I/usr/include/lua5.1', '-O2', '-ansi', '-Wall', '-fPIC']
+#CCFLAGS = ['-g']
+
+# this is the default directory for installation. Files will be installed on
+# <prefix>/bin, <prefix>/lib and <prefix>/include when you run 'scons install'
+#
+# You can also specify this directory on the command line with the 'prefix'
+# option
+#
+# You can see more 'generic' options for POSIX systems on config_posix.py
+
+prefix = '/usr'
+
+# libraries (based on ArchLinux's installation of lua)
+LIBS = ['lua5.1', 'dl', 'm']
+

Copied: tolua++/repos/community-x86_64/PKGBUILD (from rev 101854, tolua++/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-12-02 11:24:35 UTC (rev 101855)
@@ -0,0 +1,35 @@
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Chirantan Ekbote <ekbotec at chromium.org>
+# Contributer: Doug Newgard <scimmia22 at outlook dot com>
+# Contributer: Stéphane Gaudreault <stephane.gaudreault at gmail.com>
+
+pkgname=tolua++
+pkgver=1.0.93
+pkgrel=1
+pkgdesc="Tool to integrate C/C++ code with Lua"
+arch=('i686' 'x86_64')
+url="http://www.codenix.com/~tolua"
+license=('MIT')
+depends=('lua51')
+makedepends=('scons')
+options=('staticlibs')
+source=(http://www.codenix.com/~tolua/${pkgname}-${pkgver}.tar.bz2
+        config_linux.py)
+md5sums=('100aa6907b8108582080b37d79c0afd7'
+         '69ad5067084cec2924f172bb04700da6')
+provides=('toluapp')
+
+build() {
+    cd ${pkgname}-${pkgver}
+    cp ../config_linux.py "${srcdir}"/${pkgname}-${pkgver}
+
+    scons all
+}
+
+package() {
+    cd ${pkgname}-${pkgver}
+    scons prefix="${pkgdir}/usr" install
+
+    # install license files
+    install -Dm644 "$srcdir/${pkgname}-${pkgver}/COPYRIGHT" "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
+}

Copied: tolua++/repos/community-x86_64/config_linux.py (from rev 101854, tolua++/trunk/config_linux.py)
===================================================================
--- community-x86_64/config_linux.py	                        (rev 0)
+++ community-x86_64/config_linux.py	2013-12-02 11:24:35 UTC (rev 101855)
@@ -0,0 +1,22 @@
+## This is the linux configuration file
+# This file was adapted to be used with ArchLinux
+# Use 'scons -h' to see the list of command line options available
+
+# Compiler flags (based on ArchLinux's installation of lua)
+#LINKFLAGS = ['-g']
+CCFLAGS = ['-I/usr/include/lua5.1', '-O2', '-ansi', '-Wall', '-fPIC']
+#CCFLAGS = ['-g']
+
+# this is the default directory for installation. Files will be installed on
+# <prefix>/bin, <prefix>/lib and <prefix>/include when you run 'scons install'
+#
+# You can also specify this directory on the command line with the 'prefix'
+# option
+#
+# You can see more 'generic' options for POSIX systems on config_posix.py
+
+prefix = '/usr'
+
+# libraries (based on ArchLinux's installation of lua)
+LIBS = ['lua5.1', 'dl', 'm']
+




More information about the arch-commits mailing list