Package Details: libdvbcsa 1.1.0-2

Git Clone URL: https://aur.archlinux.org/libdvbcsa.git (read-only, click to copy)
Package Base: libdvbcsa
Description: A free implementation of the DVB Common Scrambling Algorithm
Upstream URL: http://www.videolan.org/developers/libdvbcsa.html
Licenses: GPL3
Submitter: CReimer
Maintainer: CReimer (M-Reimer)
Last Packager: CReimer
Votes: 5
Popularity: 0.000000
First Submitted: 2015-08-10 11:29 (UTC)
Last Updated: 2016-08-21 08:28 (UTC)

Latest Comments

binhex commented on 2023-10-12 14:18 (UTC)

Any chance we can get the PKGBUILD modified so that it can build on aarach64 are per @dkadioglu comment please, I'm trying to build tvheadend.git on aarch64 and it blows up when it hits this package.

dkadioglu commented on 2022-05-02 10:54 (UTC) (edited on 2022-05-02 10:54 (UTC) by dkadioglu)

If you modify the PKGBUILD as follows, it builds successfully on aarch64:

# This PKGBUILD is part of the VDR4Arch project [https://github.com/vdr4arch]

# Maintainer: Christopher Reimer <mail+vdr4arch[at]c-reimer[dot]de>
# Contributor: Alexandre Becoulet <alexandre.becoulet@free.fr>

pkgname=libdvbcsa
pkgver=1.1.0
pkgrel=2
pkgdesc="A free implementation of the DVB Common Scrambling Algorithm"
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="http://www.videolan.org/developers/libdvbcsa.html"
license=('GPL3')
depends=('glibc')
source=("http://download.videolan.org/pub/videolan/libdvbcsa/$pkgver/$pkgname-$pkgver.tar.gz"
        "config.guess::https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD"
        "config.sub::http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD")
md5sums=('478ab1ca56ca58d2667da6ce22f74e39'
         'SKIP'
         'SKIP')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  cp "$srcdir"/config.* "$srcdir"/"$pkgname-$pkgver"/
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}

Cob commented on 2020-03-27 10:19 (UTC)

Would it be possible to get a version which builds on aarch64?