mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 13:57:14 +08:00
29 lines
675 B
Bash
29 lines
675 B
Bash
# Maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=schroedinger
|
|
pkgver=1.0.11
|
|
pkgrel=2
|
|
pkgdesc="An implemenation of the Dirac video codec in ANSI C code"
|
|
arch=('x86_64')
|
|
url="http://www.diracvideo.org/"
|
|
license=('GPL2' 'LGPL2' 'MPL' 'MIT')
|
|
depends=('orc')
|
|
makedepends=('pkgconfig')
|
|
options=(!libtool)
|
|
source=("http://www.diracvideo.org/download/schroedinger/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('da6af08e564ca1157348fb8d92efc891')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
install -m644 -D COPYING.MIT "$pkgdir/usr/share/licenses/$pkgname/COPYING.MIT"
|
|
}
|