blob: 26e0feadbabd6bf1bc30841ac7703633569a6527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: Marcin Serwin <marcin.serwin0@protonmail.com>
pkgname=diohsc
pkgver=0.1.14.7
pkgrel=1
pkgdesc="Line-based command-oriented interactive client for the gemini protocol"
url="https://mbays.sdf.org/diohsc"
license=("GPL3")
arch=('x86_64')
depends=('ghc-libs' 'haskell-asn1-encoding' 'haskell-asn1-types' 'haskell-crypton' 'haskell-data-default-class' 'haskell-data-hash' 'haskell-drunken-bishop' 'haskell-hourglass' 'haskell-iconv' 'haskell-memory' 'haskell-mime' 'haskell-network' 'haskell-network-simple' 'haskell-network-uri' 'haskell-pem' 'haskell-regex-compat' 'haskell-rset' 'haskell-safe' 'haskell-temporary' 'haskell-terminal-size' 'haskell-tls' 'haskell-crypton-x509' 'haskell-crypton-x509-store' 'haskell-crypton-x509-validation')
makedepends=('ghc' 'pandoc-cli')
source=("https://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz" "remove-tls-2-code.patch")
sha256sums=('f07b274166c0d59bab8eb05b1e1d05dda76d259524fe0c181f9534442eb8d26f'
'e131604e46af22a69582272649ec6d57cecb345047f91bfa95498578631d0ecc')
prepare() {
cd $pkgname-$pkgver
# Remove once haskell-tls is updated to version 2 in the extra
patch --forward --strip=1 --input="${srcdir}/remove-tls-2-code.patch"
}
build() {
cd $pkgname-$pkgver
runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
--prefix=/usr --docdir=/usr/share/doc/$pkgname --datasubdir=$pkgname --enable-tests \
--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid \
--ghc-option=-optl-Wl\,-z\,relro\,-z\,now \
--ghc-option='-pie' \
-f-irilinks -f-libiconv -f-magic
runhaskell Setup build
make diohsc.1
}
package() {
cd $pkgname-$pkgver
runhaskell Setup copy --destdir="$pkgdir"
install -D -m644 diohsc.1 -t "$pkgdir"/usr/share/man/man1
install -D -m644 diohscrc.sample -t "$pkgdir"/usr/share/doc/$pkgname
}
|