diff options
author | Stephen Gregoratto | 2019-02-06 10:59:49 +1100 |
---|---|---|
committer | Stephen Gregoratto | 2019-02-06 10:59:49 +1100 |
commit | 4b638dd14fd6a831c267dd0f45df88e2a4d87d99 (patch) | |
tree | db4367b90117339ba53f87772d91afc145dd2153 /PKGBUILD | |
parent | 3306e3f7b82dbdb7509b08697519d0fe07064806 (diff) | |
download | aur-4b638dd14fd6a831c267dd0f45df88e2a4d87d99.tar.gz |
Update to 1.2.2, change license
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 27 |
1 files changed, 12 insertions, 15 deletions
@@ -1,28 +1,25 @@ -# Maintainer: Paolo Stivanin <info A,T paolostivanin D,O,T com> - +# Maintainer: Paolo Stivanin <info at paolostivanin dot com> +# Maintainer: KingofToasters <themanhimself at sgregoratto dot me> pkgname=libcotp -pkgver=1.2.1 +pkgver=1.2.2 pkgrel=1 pkgdesc='C library that generates TOTP and HOTP' -arch=('i686' 'x86_64') +url="https://github.com/paolostivanin/libcotp" +license=('APACHE') +arch=('i686' 'x86_64' 'armv6h' 'armv7h') depends=('libbaseencode') makedepends=('cmake') -url="https://github.com/paolostivanin/libcotp" options=('!strip') -license=('GPL3') - +validpgpkeys=('060C6B7D3869F148C4C4ACD43C9BE9B64EC1EA64') source=("$url/archive/v$pkgver.tar.gz" "$url/releases/download/v$pkgver/v$pkgver.tar.gz.asc") - -validpgpkeys=('060C6B7D3869F148C4C4ACD43C9BE9B64EC1EA64') - -sha256sums=("52ea9d876d8465aad666bdb38a59d85f183a0e8d2aa14b14d07e4e6bc471648e" - "SKIP") +sha256sums=('25b45ffa4aece5cc689503ebea7356a2f760c194f0c41805934495d2fe7165b1' + 'SKIP') build() { - cd "${srcdir}/${pkgname}-${pkgver}" - mkdir build && cd $_ - cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib + cd "${pkgname}-${pkgver}" + mkdir build && cd build + cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib make } |