blob: 96a099753b2649b2697014315a0fa723cbc3be56 (
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: TwoFinger
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Frederic Bezies <fredbezies at gmail dot com>
pkgname=howl-git
_pkgname=howl
pkgver=0.6
pkgrel=1
pkgdesc='General purpose, light-weight customizable editor'
arch=(i686 x86_64)
url='https://howl.io/'
license=(MIT)
depends=(gtk4 desktop-file-utils)
makedepends=(git wget)
optdepends=('ruby: for running some scripts' 'coffee-script: for running some scripts')
provides=(howl)
conflicts=(howl)
source=(git+https://github.com/howl-editor/howl.git#branch=next)
md5sums=(SKIP)
pkgver() {
cd "$srcdir"/$_pkgname
git describe --tags | sed "s+-+.r+" | tr - .
}
build() {
cd "$srcdir"/$_pkgname
make -C src
}
package() {
cd "$srcdir"/$_pkgname
make -C src PREFIX=/usr DESTDIR="$pkgdir" install
install -Dm644 LICENSE.md "$pkgdir"/usr/share/licenses/$_pkgname/LICENSE.md
rm "$pkgdir"/usr/share/howl/bundles/python/misc/examples.py
}
|