Update to 0.7.0

This commit is contained in:
Boris Barbulovski 2023-12-17 02:20:06 +01:00
parent a3a9e1a7e5
commit 11670c4ab4
2 changed files with 11 additions and 6 deletions

View file

@ -1,6 +1,6 @@
pkgbase = cfrds
pkgdesc = Client side ColdFusion RDS protocol.
pkgver = 0.6.0
pkgver = 0.7.0
pkgrel = 2
url = https://github.com/bokic/cfrds
arch = x86_64

View file

@ -1,7 +1,7 @@
# Maintainer: Boris Barbulovski <bbarbulovski@gmail.com>
pkgname='cfrds'
pkgver='0.6.0'
pkgrel=2
pkgver='0.7.0'
pkgrel=1
pkgdesc='Client side ColdFusion RDS protocol.'
arch=('x86_64' 'i686' 'pentium4' 'armv7h' 'aarch64')
url='https://github.com/bokic/cfrds'
@ -9,10 +9,15 @@ license=('MIT')
makedepends=('cmake' 'ninja' 'gcc')
depends=('glibc')
build() {
wget https://github.com/bokic/$pkgname/archive/refs/tags/$pkgver.tar.gz
tar xvzf $pkgver.tar.gz
source=(
"${pkgname}-${pkgver}.tar.gz::https://github.com/bokic/$pkgname/archive/refs/tags/${pkgver}.tar.gz"
)
sha512sums=(
'440396d566d65b15926454b9f5f7be310f8a5f66a0fce8a0d07fa0eb871b4b98313d3bd8a43a9cd1438f1b93dd1be909c0b734e2161b5660723a12776f2bc900'
)
build() {
cmake $pkgname-$pkgver -DCMAKE_INSTALL_PREFIX="$pkgdir/usr" -B$pkgname-$pkgver/build -G Ninja
ninja -C$pkgname-$pkgver/build
}