Date: Wednesday, May 12, 2021 @ 22:22:35 Author: felixonmars Revision: 932747
archrelease: copy trunk to community-staging-x86_64 Added: uusi/repos/community-staging-x86_64/ uusi/repos/community-staging-x86_64/PKGBUILD (from rev 932746, uusi/trunk/PKGBUILD) ----------+ PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) Copied: uusi/repos/community-staging-x86_64/PKGBUILD (from rev 932746, uusi/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2021-05-12 22:22:35 UTC (rev 932747) @@ -0,0 +1,44 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +pkgname=uusi +pkgver=0.4.0.0 +pkgrel=18 +pkgdesc="Tweak .cabal files" +url="https://github.com/berberman/uusi" +license=("MIT") +arch=('x86_64') +depends=('ghc-libs' 'haskell-microlens' 'haskell-microlens-th') +makedepends=('ghc' 'haskell-hunit') +source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz") +sha512sums=('acddec4ec01de73678a249ee05ac3a58c024b2f015cde81b78db9f71f12b46be6b6c84c093e56afda092f79333517154be3d7914b0caab01760acf5712ee2381') + +prepare() { + cd $pkgname-$pkgver + echo -e "import Distribution.Simple\nmain = defaultMain" > Setup.hs + sed -i 's/<3.1/<4/' $pkgname.cabal +} + +build() { + cd $pkgname-$pkgver + + runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \ + --prefix=/usr --docdir=/usr/share/doc/$pkgname --enable-tests \ + --dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \ + --ghc-option=-optl-Wl\,-z\,relro\,-z\,now \ + --ghc-option='-pie' + + runhaskell Setup build $MAKEFLAGS +} + +check() { + cd $pkgname-$pkgver + runhaskell Setup test --show-details=direct +} + +package() { + cd $pkgname-$pkgver + + runhaskell Setup copy --destdir="$pkgdir" + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + rm -f "$pkgdir"/usr/share/doc/$pkgname/LICENSE +}