|
i found this in Arch Forum http://www.archlinux.org/bbs/vie ... b8480eaff4ac9960cf4
and i guess some one else should love cute&mini WindowManagers as i do.
as the author said,you should make&install BlackBox first then the bbkey for the dependence.
and also,you have to download the package's yourself,so you can use a multidrop download tool for none of the mirrors is fast in china.
to get BlackBox,go to:
http://sourceforge.net/project/showfiles.php?group_id=40696
and bbkey :
http://sourceforge.net/project/showfiles.php?group_id=33459
now here we go:
BlackBox
- # $Id: PKGBUILD,v 1.13 2004/07/11 22:17:36 judd Exp $
- # Maintainer: dorphell <dorphell@archlinux.org>
- pkgname=blackbox
- pkgver=0.70.0
- pkgrel=1
- pkgdesc="A window manager for X11"
- depends=('x-server')
- source=($pkgname-$pkgver.tar.bz2)
- md5sums=()
- build() {
- cd $startdir/src/$pkgname-$pkgver
- ./configure --prefix=/usr --disable-nls
- make || return 1
- make DESTDIR=$startdir/pkg install
- }
复制代码
bbkey
- # $Id: PKGBUILD,v 1.13 2004/07/11 22:17:36 judd Exp $
- # Maintainer: dorphell <dorphell@archlinux.org>
- pkgname=bbkeys
- pkgver=0.9.0
- pkgrel=1
- pkgdesc="A keygrabber for blackbox"
- depends=('x-server')
- makedepends=('blackbox')
- source=($pkgname-$pkgver.tar.gz)
- md5sums=()
- build() {
- cd $startdir/src/$pkgname-$pkgver
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR=$startdir/pkg install
- }
复制代码 |
|