Date: Thursday, January 9, 2020 @ 23:22:19 Author: anthraxx Revision: 551518
upgpkg: xmobar 0.32-1: enable alsa, weather and datezone plugins Modified: xmobar/trunk/PKGBUILD ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 10 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-01-09 23:07:22 UTC (rev 551517) +++ PKGBUILD 2020-01-09 23:22:19 UTC (rev 551518) @@ -4,8 +4,8 @@ # Contributor: Arch Haskell Team <[email protected]> pkgname=xmobar -pkgver=0.31 -pkgrel=42 +pkgver=0.32 +pkgrel=1 pkgdesc='Minimalistic Text Based Status Bar' url='https://hackage.haskell.org/package/xmobar' license=('BSD') @@ -15,31 +15,50 @@ 'haskell-hinotify' 'haskell-stm' 'haskell-parsec' 'haskell-parsec-numbers' 'haskell-mtl' 'haskell-regex-base' 'haskell-regex-compat' 'haskell-http' 'haskell-dbus' 'haskell-libmpd' 'haskell-iwlib' - 'wireless_tools' 'haskell-text' 'haskell-async' 'haskell-extensible-exceptions') -makedepends=('ghc') + 'wireless_tools' 'haskell-text' 'haskell-async' 'haskell-aeson' + 'haskell-timezone-olson' 'haskell-timezone-series' 'alsa-lib' + 'haskell-extensible-exceptions' 'haskell-http-conduit' + 'haskell-http-types' 'haskell-alsa-core' 'haskell-alsa-mixer') +makedepends=('ghc' 'haskell-hspec' 'haskell-temporary') source=(https://github.com/jaor/xmobar/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz) -sha512sums=('b0afe21f398a16a2e9d6e94ecb643fc5a259e1f60504ce50acd90ae31ae2e14d0925afb66f9593ff2a9bb016e39ab612027e836ece8ede665c66badac3386d01') +sha256sums=('8d2543152b050460bf48514aaa981e6d508cabb7688b848a3b3528cfcecacb76') +sha512sums=('fa9b7c5d568b1c8e731b525736d8cf6a630def93a75884fcf3adc68e5527b31b61ef96df3019befafb83fa080703865ba511750deeb09d8ab70582ccf433b1f6') prepare() { cd xmobar-$pkgver - sed -i -e 's/==.*0.3/== 0.4/' -e 's/< *4.12/<5/' -e 's/< *2.5/<3/' xmobar.cabal + sed -e 's/&& <.*,/,/g' -e 's/==.*,/,/g' -i xmobar.cabal } build() { cd xmobar-${pkgver} + + _flags=(with_xft with_utf8 with_inotify with_iwlib with_mpd with_alsa + with_datezone with_mpris with_dbus with_xpm with_threaded + with_rtsopts with_weather) + runhaskell setup configure -O \ --enable-shared \ + --enable-executable-dynamic \ + --disable-library-vanilla \ --prefix=/usr \ - --enable-executable-dynamic --disable-library-vanilla \ - --disable-library-vanilla \ - --flags="with_utf8 with_xft with_iwlib with_xpm with_inotify with_mpd with_dbus with_mpris" + --dynlibdir=/usr/lib \ + --libsubdir=\$compiler/site-local/\$pkgid \ + --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ + --ghc-option='-pie' \ + --flags="${_flags[*]}" \ + --enable-tests runhaskell setup build } +check() { + cd xmobar-${pkgver} + runhaskell setup test +} + package() { cd xmobar-${pkgver} runhaskell setup copy --destdir="${pkgdir}" - install -Dm 644 license "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm 644 license -t "${pkgdir}/usr/share/licenses/${pkgname}" } # vim: ts=2 sw=2 et:
