blob: d753f3091ad5a32daa4addef021fca917a5b1c85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Daniel Fichtinger <daniel@ficd.ca>
_pkgname="iwe"
pkgname="${_pkgname}-bin"
pkgver=0.0.55
pkgrel=1
pkgdesc="Text editor extension for markdown notes taking"
arch=('x86_64' 'aarch64')
url="https://github.com/iwe-org/${_pkgname}"
license=("Apache-2.0")
depends=('gcc-libs' 'glibc')
provides=('iwe' 'iwes')
conflicts=('iwe' 'iwes')
source=("https://github.com/iwe-org/${_pkgname}/releases/download/${_pkgname}-v${pkgver}/${_pkgname}-v${pkgver}-${CARCH}-unknown-linux-gnu.tar.gz")
sha256sums=('1101ef33217dd9337ba4f19d3502a2b8a7145618fd316dc85b5a9b009af357f2')
package() {
install -Dm 755 "${srcdir}/iwe" -t "${pkgdir}/usr/bin/"
install -Dm 755 "${srcdir}/iwes" -t "${pkgdir}/usr/bin/"
}
|