Date: Wednesday, March 30, 2022 @ 07:14:39 Author: arojas Revision: 1177760
extra2community: Moving libdvdcss from extra to community Added: libdvdcss/ libdvdcss/repos/ libdvdcss/trunk/ libdvdcss/trunk/PKGBUILD ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Added: libdvdcss/trunk/PKGBUILD =================================================================== --- libdvdcss/trunk/PKGBUILD (rev 0) +++ libdvdcss/trunk/PKGBUILD 2022-03-30 07:14:39 UTC (rev 1177760) @@ -0,0 +1,27 @@ +# Maintainer: Jan de Groot <[email protected]> +# Contributor: Stéphane Gaudreault <[email protected]> +# Contributor: arjan <[email protected]> +# Contributor Sarah Hay <[email protected]> + +pkgname=libdvdcss +pkgver=1.4.3 +pkgrel=1 +pkgdesc="Portable abstraction library for DVD decryption" +url="https://www.videolan.org/developers/libdvdcss.html" +arch=('x86_64') +license=('GPL') +depends=('glibc') +options=('!docs' '!emptydirs') +source=(https://download.videolan.org/pub/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) +sha256sums=('233cc92f5dc01c5d3a96f5b3582be7d5cee5a35a52d3a08158745d3d86070079') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="${pkgdir}" install +}
