Skip to content

Instantly share code, notes, and snippets.

@migerh
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save migerh/7d23813b714146de78b3 to your computer and use it in GitHub Desktop.
Save migerh/7d23813b714146de78b3 to your computer and use it in GitHub Desktop.
wxlua
# Maintainer : Michael Gerhaeuser <michael dot gerhaeuser at gmail dot com>
# Contributor : speps <speps at aur dot archlinux dot org>
# Contributor: Eric Forgeot < http://ifiction.free.fr >
pkgname=wxlua
pkgver=2.8.12.3
pkgrel=3
pkgdesc="A set of bindings to the wxWidgets library for the Lua programming language."
arch=('i686' 'x86_64')
url="http://wxlua.sourceforge.net"
license=('custom:wxWindows')
depends=('lua52' 'desktop-file-utils' 'wxgtk2.8')
makedepends=('cmake')
provides=('wxstedit')
conflicts=('wxstedit')
install="$pkgname.install"
source=("http://downloads.sourceforge.net/$pkgname/$pkgname/$pkgver/wxLua-$pkgver-src.tar.gz")
md5sums=('e0a28904d046400713c07d7c4c9515ef')
prepare() {
cd wxLua-$pkgver-src
[ -d b ] || mkdir b
# wxstedit doc folder fix
sed -i 's|doc/|share/&|' modules/wxstedit/CMakeLists.txt
# right shebang for wxluafreeze.lua
sed -i 's| \..*/|/usr/bin/env |;1s||$|' apps/wxluafreeze/wxluafreeze.lua
}
build() {
cd wxLua-$pkgver-src/b
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DwxWidgets_CONFIG_EXECUTABLE=/usr/bin/wx-config-2.8 \
-DwxLua_LUA_INCLUDE_DIR=/usr/include/lua5.2 \
-DwxLua_LUA_LIBRARY=/usr/lib/liblua.so.5.2 \
-DwxLua_LUA_LIBRARY_USE_BUILTIN=0 \
-DwxLua_LUA_LIBRARY_VERSION=5.2
make
}
package() {
cd wxLua-$pkgver-src/b
make DESTDIR="$pkgdir/" install
# mv lua module
install -d "$pkgdir/usr/lib/lua/5.2"
mv "$pkgdir/usr/lib/libwx.so" "$pkgdir/usr/lib/lua/5.2/wx.so"
# desktop file
install -Dm644 ../distrib/autopackage/$pkgname.desktop \
"$pkgdir/usr/share/applications/$pkgname.desktop"
# mime file
install -Dm644 ../distrib/autopackage/$pkgname.xml \
"$pkgdir/usr/share/mime/packages/$pkgname.xml"
# license
install -Dm 644 ../docs/licence.txt \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment