diff options
Diffstat (limited to 'st-git')
-rw-r--r-- | st-git/.SRCINFO | 23 | ||||
-rw-r--r-- | st-git/PKGBUILD | 66 |
2 files changed, 89 insertions, 0 deletions
diff --git a/st-git/.SRCINFO b/st-git/.SRCINFO new file mode 100644 index 0000000..d2bd346 --- /dev/null +++ b/st-git/.SRCINFO | |||
@@ -0,0 +1,23 @@ | |||
1 | # Generated by mksrcinfo v8 | ||
2 | # Wed Oct 26 08:45:07 UTC 2016 | ||
3 | pkgbase = st-git | ||
4 | pkgdesc = Simple virtual terminal emulator for X | ||
5 | pkgver = 0.7.9.g8c99915 | ||
6 | pkgrel = 1 | ||
7 | epoch = 1 | ||
8 | url = http://st.suckless.org/ | ||
9 | arch = i686 | ||
10 | arch = x86_64 | ||
11 | license = MIT | ||
12 | makedepends = ncurses | ||
13 | makedepends = libxext | ||
14 | makedepends = git | ||
15 | depends = libxft | ||
16 | provides = st | ||
17 | conflicts = st | ||
18 | options = zipman | ||
19 | source = git://git.suckless.org/st | ||
20 | sha1sums = SKIP | ||
21 | |||
22 | pkgname = st-git | ||
23 | |||
diff --git a/st-git/PKGBUILD b/st-git/PKGBUILD new file mode 100644 index 0000000..7d9b4df --- /dev/null +++ b/st-git/PKGBUILD | |||
@@ -0,0 +1,66 @@ | |||
1 | # Maintainer: mar77i <mar77i at mar77i dot ch> | ||
2 | # Past Maintainer: Gaetan Bisson <bisson@archlinux.org> | ||
3 | # Contributor: Scytrin dai Kinthra <scytrin@gmail.com> | ||
4 | |||
5 | pkgname=st-git | ||
6 | _pkgname=st | ||
7 | pkgver=0.7.9.g8c99915 | ||
8 | pkgrel=1 | ||
9 | pkgdesc='Simple virtual terminal emulator for X' | ||
10 | url='http://st.suckless.org/' | ||
11 | arch=('i686' 'x86_64') | ||
12 | license=('MIT') | ||
13 | options=('zipman') | ||
14 | depends=('libxft') | ||
15 | makedepends=('ncurses' 'libxext' 'git') | ||
16 | epoch=1 | ||
17 | # include config.h and any patches you want to have applied here | ||
18 | source=('git://git.suckless.org/st') | ||
19 | sha1sums=('SKIP') | ||
20 | |||
21 | provides=("${_pkgname}") | ||
22 | conflicts=("${_pkgname}") | ||
23 | |||
24 | pkgver() { | ||
25 | cd "${_pkgname}" | ||
26 | git describe --tags |sed 's/-/./g' | ||
27 | } | ||
28 | |||
29 | prepare() { | ||
30 | local file | ||
31 | cd "${_pkgname}" | ||
32 | sed \ | ||
33 | -e '/char font/s/= .*/= "Fixed:pixelsize=13:style=SemiCondensed";/' \ | ||
34 | -e '/char worddelimiters/s/= .*/= " '"'"'`\\\"()[]{}<>|";/' \ | ||
35 | -e '/int defaultcs/s/= .*/= 1;/' \ | ||
36 | -i config.def.h | ||
37 | sed \ | ||
38 | -e 's/CPPFLAGS =/CPPFLAGS +=/g' \ | ||
39 | -e 's/CFLAGS =/CFLAGS +=/g' \ | ||
40 | -e 's/LDFLAGS =/LDFLAGS +=/g' \ | ||
41 | -e 's/_BSD_SOURCE/_DEFAULT_SOURCE/' \ | ||
42 | -i config.mk | ||
43 | sed '/@tic/d' -i Makefile | ||
44 | for file in "${source[@]}"; do | ||
45 | if [[ "$file" == "config.h" ]]; then | ||
46 | # add config.h if present in source array | ||
47 | # Note: this supersedes the above sed to config.def.h | ||
48 | cp "$srcdir/$file" . | ||
49 | elif [[ "$file" == *.diff || "$file" == *.patch ]]; then | ||
50 | # add all patches present in source array | ||
51 | patch -Np1 <"$srcdir/$(basename ${file})" | ||
52 | fi | ||
53 | done | ||
54 | } | ||
55 | |||
56 | build() { | ||
57 | cd "${_pkgname}" | ||
58 | make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11 | ||
59 | } | ||
60 | |||
61 | package() { | ||
62 | cd "${_pkgname}" | ||
63 | make PREFIX=/usr DESTDIR="${pkgdir}" install | ||
64 | install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" | ||
65 | install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README" | ||
66 | } | ||