blob: f4031ffc6704fdc0cbbd8ac763879898e1d58f29 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Cody P Schafer <archlinux at codyps.com>
_ipn=pcap
_bpn=haskell-${_ipn}
pkgname=${_bpn}
pkgver=0.4.5.2
pkgrel=3
pkgdesc="A system-independent interface for user-level packet capture"
arch=(x86_64)
url="https://github.com/bos/pcap"
license=('custom:BSD3')
groups=()
depends=(ghc haskell-network)
makedepends=(git)
provides=(${_bpn})
conflicts=(${_bpn})
replaces=()
backup=()
options=(!emptydirs)
install=
source=("http://hackage.haskell.org/packages/archive/${_ipn}/${pkgver}/${_ipn}-${pkgver}.tar.gz")
md5sums=('492b7ecc53d0ac3599845ab8ac553997')
build() {
cd "$srcdir/${_ipn}-${pkgver}"
runhaskell Setup configure -O --enable-shared --enable-executable-dynamic --disable-library-vanilla \
--prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
--dynlibdir=/usr/lib --libsubdir=\$compiler/site-local/\$pkgid
runhaskell Setup build
runhaskell Setup haddock
runhaskell Setup register --gen-script
runhaskell Setup unregister --gen-script
sed -i -r -e "s|ghc-pkg.*update[^ ]* |&'--force' |" register.sh
sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
}
_update_deps() {
_ver=`pacman -Q $1 | cut -f2 -d\ `
for i in `seq 0 $(expr ${#depends[@]} - 1)`; do
if [ ${depends[$i]} == $1 ]; then
depends[$i]="$1=${_ver}"
fi
done
}
package() {
_update_deps ghc
_update_deps haskell-network
cd "$srcdir/${_ipn}-${pkgver}"
install -D -m744 register.sh "${pkgdir}/usr/share/haskell/register/${pkgname}.sh"
install -D -m744 unregister.sh "${pkgdir}/usr/share/haskell/unregister/${pkgname}.sh"
install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/${_ipn}
runhaskell Setup copy --destdir=${pkgdir}
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
}
# vim:set ts=2 sw=2 et:
|