blob: c9c88a2f059191c205cd628f8cbd8235a7ee70b8 (
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
39
|
# Maintainer: Pierre Neidhardt <mail@ambrevar.xyz
pkgname=next-browser-git
_pkgname=next-browser
pkgver=1.0.0.56.g824f25d
pkgrel=2
pkgdesc="Keyboard-oriented, Common Lisp extensible web-browser"
arch=('i686' 'x86_64')
url="https://next.atlas.engineer"
license=('BSD-3')
conflicts=('next-browser')
provides=('next-browser')
source=(${_pkgname}::git+https://source.atlas.engineer/public/next)
sha256sums=('SKIP')
# If someday Next works with other Lisps, replace 'sbcl' with 'common-lisp'.
makedepends=('sbcl' 'cl-asdf')
depends=('webkit2gtk' 'sqlite' 'glib-networking' 'gsettings-desktop-schemas')
optdepends=('gstreamer: for HTML5 audio/video'
'gst-plugins-base: for HTML5 audio/video'
'gst-plugins-good: for HTML5 audio/video'
'gst-plugins-bad: for HTML5 audio/video'
'gst-plugins-ugly: for HTML5 audio/video')
# Binary will not run otherwise.
options=('!strip' '!makeflags')
pkgver() {
cd ${_pkgname}
git describe --long --tags|tr - .
}
build() {
cd ${_pkgname}
make all
}
package() {
cd ${_pkgname}
make install PREFIX=/usr DESTDIR=${pkgdir}
}
|