]> git.immae.eu Git - perso/Immae/Config/AUR.git/blobdiff - PKGBUILD
update .SRCINFO and tag checksum
[perso/Immae/Config/AUR.git] / PKGBUILD
index 92713c4d2e4e64460b2e32df91b87947428e5493..7d9b4dfcdf42e01080bad07727e3bb1e3f7778d5 100644 (file)
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,32 +1,34 @@
-# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+# Maintainer: mar77i <mar77i at mar77i dot ch>
+# Past Maintainer: Gaetan Bisson <bisson@archlinux.org>
 # Contributor: Scytrin dai Kinthra <scytrin@gmail.com>
 
 pkgname=st-git
 _pkgname=st
-pkgver=20150603.71fa10f
+pkgver=0.7.9.g8c99915
 pkgrel=1
 pkgdesc='Simple virtual terminal emulator for X'
-url='http://git.suckless.org/st/'
-arch=('i686' 'x86_64' 'armv7h')
+url='http://st.suckless.org/'
+arch=('i686' 'x86_64')
 license=('MIT')
+options=('zipman')
 depends=('libxft')
 makedepends=('ncurses' 'libxext' 'git')
-source=('git://git.suckless.org/st'
-        'scrollback.patch')
-sha1sums=('SKIP'
-          '2e10ac47eb020d50c7f861f3923bb4152255a027')
+epoch=1
+# include config.h and any patches you want to have applied here
+source=('git://git.suckless.org/st')
+sha1sums=('SKIP')
 
 provides=("${_pkgname}")
 conflicts=("${_pkgname}")
 
 pkgver() {
-       cd "${srcdir}/${_pkgname}"
-       git log -1 --format='%cd.%h' --date=short | tr -d -
+       cd "${_pkgname}"
+       git describe --tags |sed 's/-/./g'
 }
 
 prepare() {
        local file
-       cd "${srcdir}/${_pkgname}"
+       cd "${_pkgname}"
        sed \
                -e '/char font/s/= .*/= "Fixed:pixelsize=13:style=SemiCondensed";/' \
                -e '/char worddelimiters/s/= .*/= " '"'"'`\\\"()[]{}<>|";/' \
@@ -40,23 +42,25 @@ prepare() {
                -i config.mk
        sed '/@tic/d' -i Makefile
        for file in "${source[@]}"; do
-               if [[ "$file" != *.diff ]]; then
-                       continue
+               if [[ "$file" == "config.h" ]]; then
+                       # add config.h if present in source array
+                       # Note: this supersedes the above sed to config.def.h
+                       cp "$srcdir/$file" .
+               elif [[ "$file" == *.diff || "$file" == *.patch ]]; then
+                       # add all patches present in source array
+                       patch -Np1 <"$srcdir/$(basename ${file})"
                fi
-               # add all patches present in source array
-               patch -Np1 <"$SRCDEST/$file"
        done
 }
 
 build() {
-       cd "${srcdir}/${_pkgname}"
+       cd "${_pkgname}"
        make X11INC=/usr/include/X11 X11LIB=/usr/lib/X11
 }
 
 package() {
-       cd "${srcdir}/${_pkgname}"
+       cd "${_pkgname}"
        make PREFIX=/usr DESTDIR="${pkgdir}" install
        install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
        install -Dm644 README "${pkgdir}/usr/share/doc/${pkgname}/README"
-       tic -s -o "${pkgdir}/usr/share/terminfo" st.info
 }