summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 085cdb7b33ab..3d0875d3f602 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,18 +1,17 @@
pkgbase = libdvbcsa-git
pkgdesc = An implementation of the DVB Common Scrambling Algorithm
pkgver = r23.gbc6c0b1
- pkgrel = 1
+ pkgrel = 2
url = https://www.videolan.org/developers/libdvbcsa.html
arch = i686
arch = x86_64
license = GPL2
makedepends = git
depends = glibc
- provides = libdvbcsa
+ provides = libdvbcsa=r23.gbc6c0b1
conflicts = libdvbcsa
options = staticlibs
source = git+https://code.videolan.org/videolan/libdvbcsa.git
sha256sums = SKIP
pkgname = libdvbcsa-git
-
diff --git a/PKGBUILD b/PKGBUILD
index e99f4eeac323..cc3219a68683 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,14 +2,14 @@
pkgname=libdvbcsa-git
pkgver=r23.gbc6c0b1
-pkgrel=1
+pkgrel=2
pkgdesc="An implementation of the DVB Common Scrambling Algorithm"
arch=('i686' 'x86_64')
url="https://www.videolan.org/developers/libdvbcsa.html"
license=('GPL2')
depends=('glibc')
makedepends=('git')
-provides=('libdvbcsa')
+provides=("libdvbcsa=$pkgver")
conflicts=('libdvbcsa')
options=('staticlibs')
source=("git+https://code.videolan.org/videolan/libdvbcsa.git")
@@ -28,7 +28,8 @@ build() {
cd "libdvbcsa"
./bootstrap
- ./configure --prefix="/usr"
+ ./configure \
+ --prefix="/usr"
make
}