Date: Thursday, November 7, 2019 @ 22:13:14 Author: eworm Revision: 524553
archrelease: copy trunk to community-staging-x86_64 Added: ogmtools/repos/community-staging-x86_64/ ogmtools/repos/community-staging-x86_64/PKGBUILD (from rev 524552, ogmtools/trunk/PKGBUILD) ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Copied: ogmtools/repos/community-staging-x86_64/PKGBUILD (from rev 524552, ogmtools/trunk/PKGBUILD) =================================================================== --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2019-11-07 22:13:14 UTC (rev 524553) @@ -0,0 +1,25 @@ +# Maintainer: Giovanni Scafora <giova...@archlinux.org> + +pkgname=ogmtools +pkgver=1.5 +pkgrel=8 +pkgdesc="Information, extraction or creation for OGG media streams" +arch=('x86_64') +url='https://www.bunkus.org/videotools/ogmtools' +license=('GPL') +depends=('libvorbis' 'libdvdread' 'gcc-libs') +source=("https://www.bunkus.org/videotools/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +sha256sums=('c8d61d1dbceb981dc7399c1a85e43b509fd3d071fb8d3ca89ea9385e6e40fdea') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +}