-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
46 lines (40 loc) · 1.2 KB
/
PKGBUILD
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
# Contributor: mar77i <mar77i at mar77i dot ch>
# Contributor: Gaetan Bisson <[email protected]>
# Contributor: Scytrin dai Kinthra <[email protected]>
# Contributor: Stefan Husmann <[email protected]>
# Maintainer: Arnold Sommerfeld <[email protected]>
pkgname=st-ruifm-git
_pkgname=st-ruifm
pkgver=0.8.5.r1190.5ecdd32
pkgrel=2
pkgdesc='Simple virtual terminal emulator for X'
url='https://github.com/ruifm/st.git'
arch=('any')
license=('MIT')
options=('zipman')
depends=('libxft' 'harfbuzz')
makedepends=('ncurses' 'libxext' 'git')
source=("${_pkgname}::git+$url")
sha256sums=('SKIP')
provides=('st')
conflicts=('st')
pkgver() {
cd "${_pkgname}"
_pkgver=$(awk '/VERSION/ {print $3}' config.mk|head -1)
echo "${_pkgver}.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}
prepare() {
cd "${_pkgname}"
# skip terminfo which conflicts with nsurses
sed -i '/tic /d' Makefile
}
build() {
cd "${_pkgname}"
make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
}
package() {
cd "${_pkgname}"
make PREFIX=/usr DESTDIR="${pkgdir}" install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}