summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 30aba4835cb27993611e3c315a85f07191e491b6 (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: Tim Teichmann <teichmanntim@outlook.de>
pkgname=ped
pkgver=0.0.3
pkgrel=3
pkgdesc="Ped is a vim-like editor built with ncurses."
arch=('x86_64')
url="https://github.com/tim-tm/ped"
license=('MIT')
depends=('glibc' 'ncurses')
makedepends=('make' 'gcc')
source=("$pkgname-$pkgver::https://github.com/tim-tm/ped/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('SKIP')

build() {
	cd "$pkgname-$pkgver"
    ./configure
    make
}

package() {
	cd "$pkgname-$pkgver"
	sudo make install
}