blob: 05cbf18ab02151730b0cb7a6ab1f508b932b3f84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: 0xGingi <0xgingi@0xgingi.com>
pkgname=('phantom-editor-bin')
pkgver=0.7.9
pkgrel=1
pkgdesc="Phantom is a lightweight terminal-based text editor written in Rust"
arch=('x86_64')
url="https://github.com/0xGingi/phantom"
license=('MIT')
depends=('glibc' 'gcc-libs')
makedepends=('git')
provides=('phantom-editor')
conflicts=('phantom-editor')
source=("https://github.com/0xgingi/phantom/releases/download/v$pkgver/phantom")
md5sums=('SKIP')
package() {
install -Dm755 phantom "$pkgdir/usr/bin/phantom"
}
|