blob: 89484ec7d759670b23f832e64a7f5da39d08681b (
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
|
# $Id: PKGBUILD 76198 2012-09-13 13:06:35Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: J. W. Birdsong <jwbirdsong AT gmail DOT com>
pkgname=luakit
pkgver=2012.09.13
pkgrel=1
pkgdesc='Fast, small, webkit based browser framework extensible by Lua'
arch=('i686' 'x86_64')
url='http://www.luakit.org/projects/luakit'
license=('GPL3')
depends=('libwebkit' 'luafilesystem' 'libunique' 'desktop-file-utils' 'luajit')
makedepends=('git' 'help2man')
options=(!makeflags)
install='luakit.install'
source=($pkgver.tar.gz::https://github.com/mason-larobina/luakit/tarball/$pkgver)
md5sums=('5de91907c44286c9b5a21319fa7cb67f')
build() {
cd mason-larobina-luakit-*
make USE_LUAJIT=1 PREFIX=/usr DESTDIR=$pkgdir all
}
package() {
cd mason-larobina-luakit-*
make PREFIX=/usr DESTDIR=$pkgdir install
}
|