diff options
author | Daniel Bermond | 2021-03-26 22:47:01 +0000 |
---|---|---|
committer | Daniel Bermond | 2021-03-26 22:47:01 +0000 |
commit | a5c83e189ff9c9ac57e68de67039556af27f8de7 (patch) | |
tree | bf5e9fab714cf7f4e1649ec13bf23d5ba825937d | |
parent | 8e96ecb0eba824f8df436bb2d5a7d5d39bcafb8a (diff) | |
download | aur-a5c83e189ff9c9ac57e68de67039556af27f8de7.tar.gz |
Add provides and conflicts
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = librist-git pkgdesc = A library that can be used to add the RIST protocol to applications (git version) pkgver = 0.2.0rc5.r36.g24ae978 - pkgrel = 1 + pkgrel = 2 url = https://code.videolan.org/rist/librist/ arch = x86_64 license = BSD @@ -12,6 +12,8 @@ pkgbase = librist-git makedepends = lz4 depends = cjson depends = mbedtls + provides = librist + conflicts = librist source = git+https://code.videolan.org/rist/librist.git sha256sums = SKIP @@ -2,19 +2,21 @@ pkgname=librist-git pkgver=0.2.0rc5.r36.g24ae978 -pkgrel=1 +pkgrel=2 pkgdesc='A library that can be used to add the RIST protocol to applications (git version)' arch=('x86_64') url='https://code.videolan.org/rist/librist/' license=('BSD') depends=('cjson' 'mbedtls') makedepends=('git' 'meson' 'cmake' 'cmocka' 'lz4') +provides=('librist') +conflicts=('librist') BUILDENV=('!check') source=('git+https://code.videolan.org/rist/librist.git') sha256sums=('SKIP') pkgver() { - git -C librist describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//;;s/\.\(RC\|rc\)/rc/' + git -C librist describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//;s/\.\(RC\|rc\)/rc/' } build() { |