Date: Friday, August 24, 2018 @ 08:18:02 Author: alucryd Revision: 332931
upgpkg: schroedinger 1.0.11-5 Modified: schroedinger/trunk/PKGBUILD ----------+ PKGBUILD | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-08-24 08:06:08 UTC (rev 332930) +++ PKGBUILD 2018-08-24 08:18:02 UTC (rev 332931) @@ -1,28 +1,35 @@ # $Id$ -# Maintainer: Ionut Biru <[email protected]> +# Maintainer: Maxime Gauduin <[email protected]> +# Contributor: Ionut Biru <[email protected]> # Contributor: Timm Preetz <[email protected]> # Contributor: rabyte <rabyte__gmail> + pkgname=schroedinger pkgver=1.0.11 -pkgrel=4 -pkgdesc="An implemenation of the Dirac video codec in ANSI C code" +pkgrel=5 +pkgdesc='An implemenation of the Dirac video codec in ANSI C code' arch=('x86_64') -url="https://launchpad.net/schroedinger" +url='https://launchpad.net/schroedinger' license=('GPL2' 'LGPL2.1' 'MPL' 'MIT') -depends=('orc' 'gcc-libs') -source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.gz) -md5sums=('da6af08e564ca1157348fb8d92efc891') +depends=('orc') +source=("https://launchpad.net/schroedinger/trunk/${pkgver}/+download/schroedinger-${pkgver}.tar.gz"{,.asc}) +validpgpkeys=('9456AFC0814A8139E99483517FE6B095B582B0D4') # Timothy Gu +sha256sums=('1e572a0735b92aca5746c4528f9bebd35aa0ccf8619b22fa2756137a8cc9f912' + 'SKIP') build() { - cd "$srcdir/$pkgname-$pkgver" - ./configure --prefix=/usr + cd schroedinger-${pkgver} + ./configure \ + --prefix='/usr' make } package() { - cd "$srcdir/$pkgname-$pkgver" + cd schroedinger-${pkgver} make DESTDIR="$pkgdir" install - install -m644 -D COPYING.MIT "$pkgdir/usr/share/licenses/$pkgname/COPYING.MIT" + install -Dm 644 COPYING.MIT -t "${pkgdir}"/usr/share/licenses/schroedinger/ } + +# vim: ts=2 sw=2 et:
