initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

25
libdvdcss/PKGBUILD Normal file
View File

@@ -0,0 +1,25 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=libdvdcss
pkgver=1.4.2
pkgrel=1
pkgdesc="Portable abstraction library for DVD decryption"
url="https://www.videolan.org/developers/libdvdcss.html"
arch=('i686' 'x86_64')
license=('GPL-2')
depends=('glibc')
options=('!docs' '!emptydirs')
source=(https://download.videolan.org/pub/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
sha512sums=('e46ccded1951046ec481604c5b533c435be14cd0e734cd5315b61868836a20edf4cdc7c1466c2f4ed374de4382c5e758ace700e84aadcb29513001d696f1049c')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
}