2024-10-18 10:35:16 +02:00

37 lines
1.0 KiB
Bash

# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Timm Preetz <timm@preetz.us>
# Contributor: rabyte <rabyte__gmail>
pkgname=schroedinger
pkgver=1.0.11
pkgrel=7.1
pkgdesc='An implemenation of the Dirac video codec in ANSI C code'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://launchpad.net/schroedinger'
license=('GPL2' 'LGPL2.1' 'MPL' 'MIT')
depends=('orc')
source=("https://launchpad.net/schroedinger/trunk/${pkgver}/+download/schroedinger-${pkgver}.tar.gz"{,.asc})
validpgpkeys=('9456AFC0814A8139E99483517FE6B095B582B0D4') # Timothy Gu
sha256sums=('1e572a0735b92aca5746c4528f9bebd35aa0ccf8619b22fa2756137a8cc9f912'
'SKIP')
build() {
cd schroedinger-${pkgver}
./configure \
--prefix='/usr' \
--build=${CHOST}
make
}
package() {
cd schroedinger-${pkgver}
make DESTDIR="$pkgdir" install
install -Dm 644 COPYING.MIT -t "${pkgdir}"/usr/share/licenses/schroedinger/
}
# vim: ts=2 sw=2 et: