From ca04f75ce2a79175a488ecde404d316c8c3ec527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Tue, 12 Mar 2019 00:22:47 +0100 Subject: Deleted package: dwm-git Deleted package: st-git --- st-git/PKGBUILD | 66 --------------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 st-git/PKGBUILD (limited to 'st-git/PKGBUILD') diff --git a/st-git/PKGBUILD b/st-git/PKGBUILD deleted file mode 100644 index 4a5b6b4..0000000 --- a/st-git/PKGBUILD +++ /dev/null @@ -1,66 +0,0 @@ -# Maintainer: mar77i -# Past Maintainer: Gaetan Bisson -# Contributor: Scytrin dai Kinthra - -pkgname=st-git -_pkgname=st -pkgver=0.8.2.1.ge85b6b6 -pkgrel=1 -pkgdesc='Simple virtual terminal emulator for X' -url='http://st.suckless.org/' -arch=('i686' 'x86_64') -license=('MIT') -options=('zipman') -depends=('libxft') -makedepends=('ncurses' 'libxext' 'git') -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 "${_pkgname}" - git describe --tags |sed 's/-/./g' -} - -prepare() { - local file - cd "${_pkgname}" - sed \ - -e '/char font/s/= .*/= "Fixed:pixelsize=13:style=SemiCondensed";/' \ - -e '/char worddelimiters/s/= .*/= " '"'"'`\\\"()[]{}<>|";/' \ - -e '/int defaultcs/s/= .*/= 1;/' \ - -i config.def.h - sed \ - -e 's/CPPFLAGS =/CPPFLAGS +=/g' \ - -e 's/CFLAGS =/CFLAGS +=/g' \ - -e 's/LDFLAGS =/LDFLAGS +=/g' \ - -e 's/_BSD_SOURCE/_DEFAULT_SOURCE/' \ - -i config.mk - sed '/@tic/d' -i Makefile - for file in "${source[@]}"; do - 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 - done -} - -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 "${pkgdir}/usr/share/doc/${pkgname}/README" -} -- cgit v1.2.3