Created
May 8, 2017 23:08
-
-
Save djmott/8a71af8700e0474c6b2b21ed210efd98 to your computer and use it in GitHub Desktop.
Arch Linux ktp-accounts-kcm
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
pkgbasename=ktp-accounts-kcm | |
pkgname=$pkgbasename-git | |
pkgver=17.04.0 | |
pkgrel=1 | |
pkgdesc="KControl Module which handles adding/editing/removing Telepathy Accounts" | |
arch=(any) | |
url="https://github.com/KDE/ktp-accounts-kcm" | |
license=('GPL3') | |
depends=() | |
makedepends=() | |
source=("git+https://github.com/KDE/$pkgbasename.git") | |
#https://github.com/KDE/ktp-accounts-kcm.git | |
build(){ | |
cd "$srcdir/$pkgbasename" | |
echo $PWD | |
git checkout v$pkgver | |
mkdir -p "build" | |
cd build | |
cmake .. | |
make | |
} | |
package() { | |
make -C "$srcdir/$pkgbasename/build" DESTDIR="$pkgdir" install | |
} | |
md5sums=('SKIP') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment