mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
46 lines
1.0 KiB
Bash
46 lines
1.0 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=scim
|
|
pkgver=1.4.10
|
|
pkgrel=1
|
|
pkgdesc="A Input Method development platform"
|
|
arch=("i686" "x86_64")
|
|
url="http://www.scim-im.org/projects/scim"
|
|
license=('GPL')
|
|
depends=('gtk2' 'gcc-libs')
|
|
makedepends=('intltool')
|
|
backup=('etc/scim/config' 'etc/scim/global')
|
|
options=('!libtool')
|
|
install=scim.install
|
|
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/${pkgname}_$pkgver.tar.gz)
|
|
sha1sums=('bf33a6ceb199453fed909a61f54e971653fe5abf')
|
|
|
|
install=scim.install
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./bootstrap
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--disable-static \
|
|
--with-gnu-ld \
|
|
--with-x \
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|