summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 952c413bf8f0826fc124d51781ee19cb51b09235 (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=lightwrite
pkgver=0.1.0
pkgrel=1
pkgdesc="Lightwrite is a simple sdl2 based text-editor."
arch=('x86_64')
url="https://github.com/tim-tm/lightwrite"
license=('MIT')
depends=('glibc' 'sdl2' 'sdl2_ttf')
makedepends=('make' 'gcc')
source=("$pkgname-$pkgver::https://github.com/tim-tm/lightwrite/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('SKIP')

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

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