mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
27 lines
751 B
Bash
27 lines
751 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/schroedinger
|
|
|
|
pkgname=schroedinger
|
|
pkgver=1.0.11
|
|
pkgrel=5
|
|
pkgdesc="An implemenation of the Dirac video codec in ANSI C code"
|
|
arch=('x86_64')
|
|
url="http://www.diracvideo.org/"
|
|
license=('GPL2' 'LGPL2.1' 'MPL' 'MIT')
|
|
depends=('orc' 'gcc-libs')
|
|
makedepends=('pkgconfig')
|
|
source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/$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"
|
|
}
|