今天下了个最新的openbox的PKGBUILD, 然后
$makepkg -p openbox-3.4.7.2.PKGBUILD
==>
错误: 选项组含有未知的选项 '!LIBTOOL'
$ cat openbox-3.4.7.2.PKGBUILD
# Unofficial pkgbuild script for Openbox upstream releases, based on the
# pkgbuild script by Sarah Hay <
sarahhay@mb.sympatico.ca>
#
# Rename this file to "PKGBUILD" to use it in the Arch build system
pkgname=openbox
pkgver=3.4.7.2
pkgrel=1
pkgdesc="A window manager for the X11 windowing system"
arch=(i686 x86_64)
depends=('startup-notification' 'libxml2' 'libxinerama' 'libxrandr' 'libxft' 'pango' 'libxcursor')
url="
http://icculus.org/openbox"
options=('!LIBTOOL') # 晕, 要换成!libtool
license=('GPL')
backup=('/etc/xdg/openbox/menu.xml' '/etc/xdg/openbox/rc.xml')
source=(
http://www.icculus.org/openbox/releases ... er}.tar.gz)
md5sums=('9e7589e90519bc6ac2f4656ea6869439')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
./configure --prefix=/usr --sysconfdir=/etc
make || return 1
make DESTDIR=${startdir}/pkg install
}