Added haskell-alsa-mixer dependency for xmobar-git
This commit is contained in:
parent
924aaa10bc
commit
66cba80c9a
2 changed files with 38 additions and 3 deletions
35
pkgbuild/haskell-alsa-mixer/PKGBUILD
Normal file
35
pkgbuild/haskell-alsa-mixer/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||
_hkgname=alsa-mixer
|
||||
pkgname=haskell-alsa-mixer
|
||||
pkgver=0.1
|
||||
pkgrel=1
|
||||
pkgdesc="Bindings to the ALSA simple mixer API."
|
||||
url="http://hackage.haskell.org/package/${_hkgname}"
|
||||
license=('custom:BSD3')
|
||||
arch=('i686' 'x86_64')
|
||||
makedepends=()
|
||||
depends=('ghc' 'haskell-alsa-core<0.6' 'haskell-bytestring=0.9.1.7' 'haskell-template-haskell=2.4.0.1' 'alsa-lib')
|
||||
options=('strip')
|
||||
source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz)
|
||||
install=${pkgname}.install
|
||||
md5sums=('c9a585d6ad00f31929a37b381f245b98')
|
||||
build() {
|
||||
cd ${srcdir}/${_hkgname}-${pkgver}
|
||||
runhaskell Setup configure -O --enable-split-objs --enable-shared \
|
||||
--prefix=/usr --docdir=/usr/share/doc/${pkgname} --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}/${_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
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||
pkgname=xmobar-git
|
||||
pkgver=20101222
|
||||
pkgrel=2
|
||||
pkgver=20110128
|
||||
pkgrel=1
|
||||
pkgdesc="A minimal status bar for the XMonad Window Manager"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://projects.haskell.org/xmobar/"
|
||||
license=('custom:BSD3')
|
||||
makedepends=('ghc>=6.12' 'haskell-x11-xft' 'haskell-stm' 'haskell-parsec' 'haskell-utf8-string' 'haskell-libmpd' 'haskell-hinotify' 'wireless_tools' 'git')
|
||||
makedepends=('ghc>=6.12' 'haskell-x11-xft' 'haskell-stm' 'haskell-parsec' 'haskell-utf8-string' 'haskell-libmpd' 'haskell-hinotify' 'wireless_tools' 'git' 'haskell-alsa-mixer')
|
||||
depends=('wireless_tools' 'gmp' 'libxinerama' 'libxft')
|
||||
conflicts=('xmobar' 'xmobar-darcs')
|
||||
install=
|
||||
|
|
Loading…
Reference in a new issue