summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f871a20131cee4100c7ef525a3649438907697b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#Maintainer: gingrspacecadet@github.comi
pkgname=hyprpad
pkgver=0.1.3
pkgrel=1
pkgdesc="A simple, fast text editor with Vim keybinds"
arch=('x86_64')
url="https://github.com/gingrspacecadet/hyprpad"
license=('AGPL')
depends=('glibc' 'ncurses')
makedepends=('gcc' 'make')
source=("hyprpad.c" "Makefile")
sha256sums=('SKIP' 'SKIP')

build() {
	cd "$srcdir"
	make
}

package() {
	cd "$srcdir"
	make DESTDIR="$pkgdir" install
}