# This is an example PKGBUILD file. Use this as a start to creating your own, # and remove these comments. For more information, see 'man PKGBUILD'. # NOTE: Please fill out the license field for your package! If it is unknown, # then please put 'unknown'. # Maintainer: 000000000 <0@0.net> pkgname=libsignal-protocol-c pkgver=2.3.2 pkgrel=1 epoch= pkgdesc="Signal Protocol C Library" arch=('x86_64') url="https://github.com/signalapp/libsignal-protocol-c" license=('GPLv3') groups=() depends=() makedepends=('cmake') checkdepends=('check' 'openssl>=1.0') optdepends=() provides=() conflicts=() replaces=() backup=() options=() install= changelog= source=(https://github.com/WhisperSystems/$pkgname/archive/v$pkgver.tar.gz) noextract=() md5sums=() validpgpkeys=() prepare() { cd "$pkgname-$pkgver" } build() { cd "$pkgname-$pkgver" cmake } check() { cd "$pkgname-$pkgver" cmake } package() { cd "$pkgname-$pkgver" }