[arch-commits] Commit in shellcheck/trunk (PKGBUILD shellcheck.install)

Felix Yan fyan at archlinux.org
Thu Dec 24 15:20:54 UTC 2015


    Date: Thursday, December 24, 2015 @ 16:20:54
  Author: fyan
Revision: 154447

upgpkg: shellcheck 0.4.1-3

try to remove libraries and their docs

Modified:
  shellcheck/trunk/PKGBUILD
Deleted:
  shellcheck/trunk/shellcheck.install

--------------------+
 PKGBUILD           |   26 +++++++-------------------
 shellcheck.install |   18 ------------------
 2 files changed, 7 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2015-12-24 15:02:59 UTC (rev 154446)
+++ PKGBUILD	2015-12-24 15:20:54 UTC (rev 154447)
@@ -5,39 +5,27 @@
 _hkgname=ShellCheck
 pkgname=shellcheck
 pkgver=0.4.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Shell script analysis tool"
 url="http://www.shellcheck.net"
 license=("GPL")
 arch=('i686' 'x86_64')
-depends=("ghc=7.10.3" "haskell-json" "haskell-mtl" "haskell-parsec" "haskell-quickcheck"
-         "haskell-regex-tdfa")
+depends=('libffi' 'gmp')
+makedepends=("ghc=7.10.3" "haskell-json" "haskell-mtl" "haskell-parsec" "haskell-quickcheck"
+             "haskell-regex-tdfa")
 options=('staticlibs')
 source=("http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz")
-install="${pkgname}.install"
 sha256sums=('531af7608dea3f84b14a0d795fb9322c89850235992584d4b7a7b73dc47a3905')
 
 build() {
     cd "${srcdir}/${_hkgname}-${pkgver}"
-    
-    runhaskell Setup configure -O --enable-library-profiling --enable-shared \
-        --prefix=/usr --docdir="/usr/share/doc/${pkgname}" \
-        --libsubdir=\$compiler/site-local/\$pkgid
+    runhaskell Setup configure -O --prefix=/usr --docdir="/usr/share/doc/${pkgname}"
     runhaskell Setup build
-    runhaskell Setup haddock --hoogle --html
-    runhaskell Setup register --gen-script
-    runhaskell Setup unregister --gen-script
-    sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
 }
 
 package() {
     cd "${srcdir}/${_hkgname}-${pkgver}"
-    
-    install -D -m744 register.sh   "${pkgdir}/usr/share/haskell/${pkgname}/register.sh"
-    install    -m744 unregister.sh "${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh"
-    install -d -m755 "${pkgdir}/usr/share/doc/ghc/html/libraries"
-    ln -s "/usr/share/doc/${pkgname}/html" "${pkgdir}/usr/share/doc/ghc/html/libraries/${_hkgname}"
     runhaskell Setup copy --destdir="${pkgdir}"
-    install -D -m644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-    rm -f "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
+    # Remove library and doc (license only)
+    rm -r "$pkgdir"/usr/{lib,share}
 }

Deleted: shellcheck.install
===================================================================
--- shellcheck.install	2015-12-24 15:02:59 UTC (rev 154446)
+++ shellcheck.install	2015-12-24 15:20:54 UTC (rev 154447)
@@ -1,18 +0,0 @@
-HS_DIR=usr/share/haskell/shellcheck
-post_install() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_upgrade() {
-  ${HS_DIR}/unregister.sh
-}
-post_upgrade() {
-  ${HS_DIR}/register.sh
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-pre_remove() {
-  ${HS_DIR}/unregister.sh
-}
-post_remove() {
-  (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}



More information about the arch-commits mailing list