mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 01:34:37 +08:00
24 lines
612 B
Bash
24 lines
612 B
Bash
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
|
|
pkgname=libdvdcss
|
|
pkgver=1.3.0
|
|
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' '!emptydirs')
|
|
source=("http://download.videolan.org/pub/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
|
sha1sums=('b3ccd70a510aa04d644f32b398489a3122a7e11a')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|