desktop/support-pkg-meanwhile/PKGBUILD

38 lines
952 B
Bash

#
# KDE SC 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
# original name (used for the source and pkgnames)
_origname=meanwhile
pkgname=${_origname}
pkgver=1.0.2
pkgrel=12
arch=('i686' 'x86_64')
pkgdesc="Meanwhile Libraries"
url="http://meanwhile.sourceforge.net/"
license="GPL"
depends=('glib2')
makedepends=('doxygen')
options=('!splitdbg' '!splithdr')
source=(http://downloads.sourceforge.net/project/meanwhile/meanwhile/$pkgver/meanwhile-$pkgver.tar.gz)
md5sums=('bf4ced109a367b4c5d71fe63c043270e') # meanwhile-1.0.2.tar.gz
groups=("kde-uninstall" "kde-support")
build()
{
cd $startdir/src/$_origname-$pkgver
./configure --prefix=${_installprefix}
make || return 1
make DESTDIR=$startdir/pkg install
}