diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-01-12 13:04:54 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-01-12 13:04:54 +0100 |
commit | 24633b6f6af8dc77ca77224448d226d8e99c9ce1 (patch) | |
tree | 0e862445be6a105957104f94f7e4f2668e1fdbba /community/lgi | |
parent | d28ed89b1e41f7e71045a5c2e898aa3b369eda47 (diff) | |
parent | 8c2563c3c13cb7a279544f6926cbdd2eb902cc9a (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/cdemu-daemon/PKGBUILD
community/chmsee/PKGBUILD
community/fceux/PKGBUILD
community/ginac/PKGBUILD
community/gstreamermm/PKGBUILD
community/gtksourceviewmm/PKGBUILD
community/lgi/PKGBUILD
community/libmirage/PKGBUILD
core/gawk/PKGBUILD
core/gettext/PKGBUILD
extra/enca/PKGBUILD
extra/gnutls/PKGBUILD
extra/hdf5/PKGBUILD
extra/kdebase/PKGBUILD
extra/libass/PKGBUILD
extra/libdiscid/PKGBUILD
extra/libxcomposite/PKGBUILD
extra/libxdamage/PKGBUILD
extra/maxima/PKGBUILD
extra/nx/PKGBUILD
extra/opencv/PKGBUILD
extra/pidgin/PKGBUILD
extra/redland/PKGBUILD
extra/sharutils/PKGBUILD
extra/soundtouch/PKGBUILD
extra/sqlite/PKGBUILD
extra/twisted/PKGBUILD
libre/dpkg/PKGBUILD
Diffstat (limited to 'community/lgi')
-rw-r--r-- | community/lgi/PKGBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/community/lgi/PKGBUILD b/community/lgi/PKGBUILD index 35c98e2b2..093562a04 100644 --- a/community/lgi/PKGBUILD +++ b/community/lgi/PKGBUILD @@ -1,25 +1,28 @@ -# $Id: PKGBUILD 81537 2012-12-23 19:51:51Z seblu $ +# $Id: PKGBUILD 81847 2013-01-02 00:52:50Z seblu $ # Maintainer: speps <speps at aur dot archlinux dot org> # Maintainer: Sébastien Luttringer <seblu@archlinux.org> -pkgname=lgi +pkgbase=lgi +pkgname=(lua-lgi) pkgver=0.6.2 pkgrel=1 -pkgdesc='Lua binadings for gnome/gobject using gobject-introspection library' +pkgdesc='Lua bindings for gnome/gobject using gobject-introspection library' arch=(i686 x86_64 mips64el) url='https://github.com/pavouk/lgi' license=('custom:MIT') depends=('glibc' 'glib2' 'libffi' 'lua' 'gobject-introspection') -source=("https://github.com/downloads/pavouk/lgi/$pkgname-$pkgver.tar.gz") +replaces=('lgi') +conflicts=('lgi') +source=("https://github.com/downloads/pavouk/lgi/$pkgbase-$pkgver.tar.gz") md5sums=('9ae2c0740e9ea536b6b6afacea5bd21b') build() { - cd $pkgname-$pkgver + cd $pkgbase-$pkgver make } -package() { - cd $pkgname-$pkgver +package_lua-lgi() { + cd $pkgbase-$pkgver make \ LUA_LIBDIR=/usr/lib/lua/5.2 \ LUA_SHAREDIR=/usr/share/lua/5.2 \ |