mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
961cfc61e8
Conflicts: apper/PKGBUILD avogadro/PKGBUILD calligra-l10n/PKGBUILD calligra/PKGBUILD digikam/PKGBUILD freerdp/PKGBUILD kapudan/PKGBUILD kde-baseapps-konsole/PKGBUILD kde-gtk-config/PKGBUILD kde-l10n/PKGBUILD kde-plasma-themes/PKGBUILD kde-runtime/PKGBUILD kde-sc.md5 kde-workspace/PKGBUILD kdeedu-kalzium/PKGBUILD kdegames-kigo/PKGBUILD kdegames-libkdegames/PKGBUILD kdemultimedia-thumbnailers/PKGBUILD kdenetwork-kopete/PKGBUILD kdenetwork-kopete/kdenetwork.install kdepimlibs/PKGBUILD kdeplasma-applets-networkmanagement/PKGBUILD kdeplasma-applets-plasma-nm/PKGBUILD kdeutils-ark/PKGBUILD kdewebdev/PKGBUILD kscreen/PKGBUILD libkscreen/PKGBUILD libxklavier/PKGBUILD nepomuk-core/PKGBUILD partitionmanager/PKGBUILD support-pkg-meanwhile/PKGBUILD system-config-printer/PKGBUILD tools-pkg-akabeiclient/PKGBUILD tools-pkg-akabeicore/PKGBUILD tribe-partitionmanager/PKGBUILD tribe/PKGBUILD xscreensaver/PKGBUILD
38 lines
870 B
Bash
38 lines
870 B
Bash
|
|
|
|
|
|
# Maintainer (i686): Phil Miller <philm@chakra-project[dog]org>
|
|
# Maintainer (x86_64): Manuel Tortosa <manutortosa@chakra-project@org>
|
|
|
|
# Include global configuration
|
|
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=('!debug' '!header')
|
|
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 ${srcdir}/$_origname-$pkgver
|
|
./configure --prefix=${_installprefix}
|
|
make
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|