mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 19:57:16 +08:00
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
#
|
|
# Chakra 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>
|
|
|
|
pkgname=gnokii
|
|
pkgver=0.6.30
|
|
pkgrel=2
|
|
pkgdesc="Tools and user space driver for use with mobile phones"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnokii.org/"
|
|
license=('GPL')
|
|
depends=('libusb-compat' 'libxpm' 'bluez' 'libical')
|
|
makedepends=('libmysqlclient' 'postgresql-libs' 'intltool')
|
|
optdepends=('libmysqlclient: smsd mysql backend'
|
|
'postgresql-libs: smsd postgresql backend')
|
|
backup=('etc/gnokiirc')
|
|
options=('!libtool' '!makeflags')
|
|
source=(http://www.gnokii.org/download/$pkgname/$pkgname-${pkgver}.tar.bz2
|
|
gnokii.patch)
|
|
md5sums=('c90137d403febbc16712d64f0eb196de'
|
|
'4d764727686ee34bc73489c8b1321c82')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
# FS#13249
|
|
sed -i 's|cellphone|phone|' xgnokii/xgnokii.desktop.in
|
|
|
|
patch -Np1 -i "${srcdir}/gnokii.patch"
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-security \
|
|
--disable-unix98test \
|
|
--disable-gtk2
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -Dm644 Docs/sample/gnokiirc "${pkgdir}/etc/gnokiirc"
|
|
}
|