mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 15:47:49 +08:00
24 lines
581 B
Bash
24 lines
581 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=libdvdcss
|
|
pkgver=1.2.13
|
|
pkgrel=1
|
|
pkgdesc="libdvdcss is a cross-platform library for transparent DVD device access with on-the-fly CSS decryption."
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=("http://download.videolan.org/pub/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('53cfc52a60a156763c425572e5179273')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|