forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
archrelease: copy trunk to testing-x86_64
git-svn-id: file:///srv/repos/svn-packages/svn@341688 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
1 parent
f51b906
commit 6b5e267
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Maintainer: Antonio Rojas <[email protected]> | ||
|
||
pkgname=mailcommon | ||
pkgver=18.12.0 | ||
pkgrel=1 | ||
pkgdesc="KDE PIM library providing support for mail applications" | ||
arch=(x86_64) | ||
url="https://kontact.kde.org" | ||
license=(LGPL) | ||
depends=(mailimporter messagelib phonon-qt5) | ||
makedepends=(extra-cmake-modules boost qt5-tools kdesignerplugin) | ||
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) | ||
sha256sums=('04f15b559473bb042b36786ab4f9cf92ee132edea9cf8091e73df1794deb2f2a' | ||
'SKIP') | ||
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <[email protected]> | ||
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <[email protected]> | ||
|
||
prepare() { | ||
mkdir -p build | ||
} | ||
|
||
build() { | ||
cd build | ||
cmake ../$pkgname-$pkgver \ | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=lib \ | ||
-DBUILD_TESTING=OFF | ||
make | ||
} | ||
|
||
package() { | ||
cd build | ||
make DESTDIR="$pkgdir" install | ||
} |