blob: ece676c7422ac0e402c9dbccb1ac4567361977bd (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Maintainer: Sergii Fesenko <sergii underscore f dot at outlook dot com>
pkgname=lite-xl-git
_pkgname=${pkgname%-git}
pkgver=v2.1.3.r2313.2e8d59b8
pkgrel=1
pkgdesc='A lightweight text editor written in Lua (master branch)'
arch=('x86_64')
url="https://lite-xl.github.io/"
license=('MIT')
depends=(
'glibc'
'lua'
'sdl2'
'freetype2'
'pcre2'
'hicolor-icon-theme'
)
makedepends=('meson>=0.58' 'jq')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("${_pkgname}::git+https://github.com/lite-xl/lite-xl")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
# git describe --tags --long --exclude 'testing*' | sed 's/^v//; s/\([^-]*-g\)/r\1/; s/-/./g'
V=$(meson introspect --projectinfo _build | jq -r '.version')
CNT=$(git rev-list --count HEAD)
H=$(git rev-parse --short HEAD)
echo v${V}.r${CNT}.${H}
}
prepare() {
cd "${_pkgname}"
arch-meson -Duse_system_lua=true _build
}
build() {
cd "${_pkgname}"
meson compile -C _build
}
package() {
cd "${_pkgname}"
DESTDIR="$pkgdir" meson install --skip-subprojects -C _build
mkdir -p "$pkgdir/usr/share/licenses/$pkgname/"
ln -s "/usr/share/doc/lite-xl/licenses.md" "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
}
|