summaryrefslogtreecommitdiff
path: root/community/luaposix/PKGBUILD
blob: 7983e7badd00a3616fce8c57e564f56c070e6410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# $Id: PKGBUILD 61274 2011-12-27 22:28:27Z seblu $
# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
# Contributor: SpepS <dreamspepser at yahoo dot it>
# Contributor: Laszlo Papp <djszapi at archlinux us>
# Contributor: Donald Ephraim Curtis <dcurtis@gmail.com>

pkgname=luaposix
pkgver=5.1.15
pkgrel=1
pkgdesc='A POSIX library for Lua programming language'
arch=('i686' 'x86_64')
url='http://luaforge.net/projects/luaposix/'
license=('GPL' 'LGPL')
depends=('lua')
options=('!libtool')
source=("https://github.com/downloads/rrthomas/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('c492541a768302fb67ad14a294306f3a')

build() {
  cd $pkgname-$pkgver

  ./configure --prefix=/usr \
              --libdir=/usr/lib/lua/5.1 \
              --datadir=/usr/share/lua/5.1 
  make
}

package() {
  cd $pkgname-$pkgver

  make PREFIX=/usr DESTDIR="$pkgdir/" install

  # examples
  install -d "$pkgdir/usr/share/$pkgname/examples"
  install -D -m 644 *.lua "$pkgdir/usr/share/$pkgname/examples"
}

# vim:set ts=2 sw=2 ft=sh et: