]> git.immae.eu Git - perso/Immae/Config/AUR.git/blob - PKGBUILD
remove scrollback patch on the AUR branch.
[perso/Immae/Config/AUR.git] / PKGBUILD
1 # Maintainer: Gaetan Bisson <bisson@archlinux.org>
2 # Contributor: Scytrin dai Kinthra <scytrin@gmail.com>
3
4 pkgname=st-git
5 _pkgname=st
6 pkgver=20150603.71fa10f
7 pkgrel=1
8 pkgdesc='Simple virtual terminal emulator for X'
9 url='http://git.suckless.org/st/'
10 arch=('i686' 'x86_64' 'armv7h')
11 license=('MIT')
12 depends=('libxft')
13 makedepends=('ncurses' 'libxext' 'git')
14 source=('git://git.suckless.org/st')
15 sha1sums=('SKIP')
16
17 provides=("${_pkgname}")
18 conflicts=("${_pkgname}")
19
20 pkgver() {
21 cd "${srcdir}/${_pkgname}"
22 git log -1 --format='%cd.%h' --date=short | tr -d -
23 }
24
25 prepare() {
26 local file
27 cd "${srcdir}/${_pkgname}"
28 sed \
29 -e '/char font/s/= .*/= "Fixed:pixelsize=13:style=SemiCondensed";/' \
30 -e '/char worddelimiters/s/= .*/= " '"'"'`\\\"()[]{}<>|";/' \
31 -e '/int defaultcs/s/= .*/= 1;/' \
32 -i config.def.h
33 sed \
34 -e 's/CPPFLAGS =/CPPFLAGS +=/g' \
35 -e 's/CFLAGS =/CFLAGS +=/g' \
36 -e 's/LDFLAGS =/LDFLAGS +=/g' \
37 -e 's/_BSD_SOURCE/_DEFAULT_SOURCE/' \
38 -i config.mk
39 sed '/@tic/d' -i Makefile
40 for file in "${source[@]}"; do
41 if [[ "$file" != *.diff ]]; then
42 # add config.h if present in source array
43 # Note: this supersedes the above sed to config.def.h
44 [[ "$file" == "config.h" ]] && cp "$SRCDEST/$file" .
45 continue
46 fi
47 # add all patches present in source array
48 patch -Np1 <"$SRCDEST/$file"
49 done
50 }
51
52 build() {
53 cd "${srcdir}/${_pkgname}"
54 make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
55 }
56
57 package() {
58 cd "${srcdir}/${_pkgname}"
59 make PREFIX=/usr DESTDIR="${pkgdir}" install
60 install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
61 install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
62 tic -s -o "${pkgdir}/usr/share/terminfo" st.info
63 }