blob: 9d404e6930db118d7ec25ef5fc51fc50d22e07d3 (
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
|
# Maintainer: Jakob Gahde <j5lx@fmail.co.uk>
# Maintainer: Solomon Choina <shlomochoina@gmail.com>
_pkgname=edi
pkgname=${_pkgname}-git
pkgver=v0.8.0.28.ge9d30f6
pkgrel=2
conflicts=(edi)
provides=(edi)
pkgdesc="The EFL IDE"
arch=('i686' 'x86_64')
url="https://git.enlightenment.org/enlightenment/${_pkgname}/"
license=(GPL-2.0-only)
depends=('efl' 'clang' 'check')
makedepends=('git' 'meson')
source=("git+https://git.enlightenment.org/enlightenment/edi.git")
md5sums=('SKIP')
pkgver() {
cd "${srcdir}/${_pkgname}"
echo $(git describe --always | sed 's/-/./g')
}
build() {
arch-meson $_pkgname build \
-Dlibclang=true
ninja -C build
}
#check() {
# cd "${srcdir}/${_pkgname}"
#
# make check
#}
package() {
DESTDIR=${pkgdir} ninja -C build install
}
|