|
|
发表于 2008-7-21 18:22:47
|
显示全部楼层
自己编译,忘了那里弄的PKGBUILD
# Contributor: Missed <Jerry87905@gmail.com>
pkgname=scim-bridge
pkgver=0.4.15
pkgrel=1
pkgdesc="Yet another gtk-immodule for SCIM"
arch=('i686' 'x86_64')
url="http://www.scim-im.org"
license=('GPL2')
depends=(scim gtk2 qt)
source=(http://www.mirrorservice.org/sites/download.sourceforge.net/pub/sourceforge/s/sc/scim/$pkgname-$pkgver.tar.gz)
md5sums=('03015dfdc01f8aa6ad933c695f47077b')
build() {
cd "$startdir/src/$pkgname-$pkgver"
# remove QT4_LIBS=/usr/lib/qt/ if u dont need QT4 support
QT4_LIBS=/usr/lib/qt/ ./configure --prefix=/usr --enable-qt4-immodule --enable-gtk2-immodule --disable-qt3-immodule
make || return 1
make DESTDIR="$startdir/pkg" install
# remove two lines below if u dont need QT4 support
mkdir -p $startdir/pkg/usr/lib/qt
mv $startdir/pkg/usr/plugins $startdir/pkg/usr/lib/qt/
} |
|