mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-15 03:59:03 +08:00
59 lines
2.2 KiB
Bash
59 lines
2.2 KiB
Bash
# Apps Packages for Chakra, part of www.chakra-project.org
|
|
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: Stephen McIntosh <stephenmac7[at]gmail[dot]com>
|
|
# Thomas Dziedzic <gostrc@gmail.com>
|
|
# Vesa Kaihlavirta <vesa@archlinux.org>
|
|
# Arch Haskell Team <arch-haskell@haskell.org>
|
|
|
|
_hkgname=regex-compat
|
|
pkgname=haskell-regex-compat
|
|
pkgver=0.95.1
|
|
pkgrel=7
|
|
pkgdesc="Replaces/Enhances Text.Regex"
|
|
url="http://hackage.haskell.org/package/regex-compat"
|
|
license=('custom:BSD3')
|
|
arch=('x86_64' 'i686')
|
|
makedepends=()
|
|
depends=('ghc=7.6.3-1' 'haskell-array' 'haskell-base>=3.0' 'haskell-regex-base>=0.93' 'haskell-regex-posix>=0.95.1')
|
|
options=('strip')
|
|
source=("http://hackage.haskell.org/packages/archive/regex-compat/0.95.1/regex-compat-0.95.1.tar.gz")
|
|
install="haskell-regex-compat.install"
|
|
sha512sums=('9fb38b001a4cdca5b3630d88e8fcb2f359f6e8dd49fbe13d5e2a1c99b4978b33ce639b344445b27daf68abbae1cf2c9905d48ff68a81e02b4e54aa92dea956e2')
|
|
|
|
build() {
|
|
cd "${srcdir}/regex-compat-0.95.1"
|
|
runhaskell Setup configure \
|
|
-O \
|
|
${PKGBUILD_HASKELL_ENABLE_PROFILING:+-p } \
|
|
--enable-split-objs \
|
|
--enable-shared \
|
|
--prefix="/usr" \
|
|
--docdir="/usr/share/doc/haskell-regex-compat" \
|
|
--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.*unregister[^ ]* |&'--force' |" unregister.sh
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/regex-compat-0.95.1"
|
|
install -D -m744 register.sh \
|
|
"${pkgdir}/usr/share/haskell/haskell-regex-compat/register.sh"
|
|
install -m744 unregister.sh \
|
|
"${pkgdir}/usr/share/haskell/haskell-regex-compat/unregister.sh"
|
|
install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
|
|
|
|
# Documentation
|
|
ln -s "/usr/share/doc/haskell-regex-compat/html" \
|
|
"${pkgdir}/usr/share/doc/ghc/html/libraries/regex-compat"
|
|
|
|
# License
|
|
install -D -m644 LICENSE \
|
|
"${pkgdir}/usr/share/licenses/haskell-regex-compat/LICENSE"
|
|
rm -f "${pkgdir}/usr/share/doc/haskell-regex-compat/LICENSE"
|
|
|
|
runhaskell Setup copy --destdir="${pkgdir}"
|
|
}
|