mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
22 lines
558 B
Bash
22 lines
558 B
Bash
pkgname=libdvdcss
|
|
pkgver=1.4.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=('4872a7c7e5c170c6c1787573b2f900b36a1ba974')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|