summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4c472db256799eea63bb2c8949f36a7264502dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Maintainer: osch <oliver@luced.de>
pkgname=luced
pkgver=0.02
pkgrel=1
epoch=
pkgdesc="The Lucid Editor - a fast & lightweight text editor for X11."
arch=('x86_64')
url="https://luced.de"
license=('GPL2')
groups=()
depends=('libx11'
         'libxpm'
         'xorg-fonts-75dpi')
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://luced.de/releases/$pkgname-$pkgver.tar.gz")
noextract=()
md5sums=('fe35d0c4e62ef744ee10fd189776b1ef')
validpgpkeys=()

prepare() {
	cd "$pkgname-$pkgver"
}

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

check() {
	cd "$pkgname-$pkgver"
	make -k check
}

package() {
	cd "$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install-strip
}