diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/luafilesystem | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/luafilesystem')
-rw-r--r-- | community/luafilesystem/LICENSE | 22 | ||||
-rw-r--r-- | community/luafilesystem/PKGBUILD | 46 |
2 files changed, 0 insertions, 68 deletions
diff --git a/community/luafilesystem/LICENSE b/community/luafilesystem/LICENSE deleted file mode 100644 index 53f2abebc..000000000 --- a/community/luafilesystem/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (C) 2004-2007 The Kepler Project. - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN -ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - diff --git a/community/luafilesystem/PKGBUILD b/community/luafilesystem/PKGBUILD deleted file mode 100644 index d4237e35a..000000000 --- a/community/luafilesystem/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# $Id: PKGBUILD 81391 2012-12-19 13:27:48Z seblu $ -# Maintainer: Chris Brannon <cmbrannon79@gmail.com> -# Contributor: Paulo Matias <matiasΘarchlinux-br·org> -# Contributor: Anders Bergh <anders1@gmail.com> - -pkgbase=luafilesystem -pkgname=(lua-filesystem lua51-filesystem) -pkgver=1.6.2 -pkgrel=2 -pkgdesc='File System Library for the Lua Programming Language' -arch=('i686' 'x86_64') -url='http://www.keplerproject.org/luafilesystem/' -license=('MIT') -makedepends=(lua lua51) -source=(http://github.com/downloads/keplerproject/$pkgbase/$pkgbase-$pkgver.tar.gz - LICENSE) -md5sums=('4e7ec93678c760c4e42cea7d28aafa13' - 'beb2b58c4b5c2782304a5b0267a5651b') - -build() { - msg2 "Building $pkgbase with lua 5.1" - cp -a $pkgbase-$pkgver $pkgbase-$pkgver-51 - cd $pkgbase-$pkgver-51 - make LUA_INC=/usr/include/lua5.1 - msg2 "Building $pkgbase with lua 5.2" - cd "$srcdir/$pkgbase-$pkgver" - make -} - -package_lua-filesystem() { - depends=('lua') - - cd $pkgbase-$pkgver - make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.2' install - install -Dm644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE -} - -package_lua51-filesystem() { - depends=('lua51') - conflicts=('luafilesystem') - replaces=('luafilesystem') - - cd $pkgbase-$pkgver-51 - make PREFIX=$pkgdir/usr LUA_LIBDIR='$(PREFIX)/lib/lua/5.1' install - install -Dm644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE -} |