Date: Thursday, January 1, 2015 @ 09:43:38 Author: idevolder Revision: 125109
add kodi-audioencoder-vorbis Added: kodi-audioencoder-vorbis/ kodi-audioencoder-vorbis/repos/ kodi-audioencoder-vorbis/trunk/ kodi-audioencoder-vorbis/trunk/PKGBUILD ----------+ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) Added: kodi-audioencoder-vorbis/trunk/PKGBUILD =================================================================== --- kodi-audioencoder-vorbis/trunk/PKGBUILD (rev 0) +++ kodi-audioencoder-vorbis/trunk/PKGBUILD 2015-01-01 08:43:38 UTC (rev 125109) @@ -0,0 +1,35 @@ +# $Id +# Maintainer: BlackEagle <[email protected]>> + +pkgname=kodi-audioencoder-vorbis +pkgver=20141224.787d4a0 +pkgrel=1 +pkgdesc="kodi audioencoder addon for ogg/vorbis" +arch=('i686' 'x86_64') +url='https://github.com/xbmc/audioencoder.vorbis' +license=('GPL') +depends=('kodi') +makedepends=('git' 'cmake') +source=("$pkgname::git://github.com/xbmc/audioencoder.vorbis.git") +sha256sums=('SKIP') + +pkgver() { + cd "$pkgname" + git log -1 --date=short --format="%cd.%h" | tr -d '-' +} + +build() { + cd "$pkgname" + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_SHARED_LIBS=1 \ + -DUSE_LTO=1 + make +} + +package() { + cd "$pkgname" + make DESTDIR="$pkgdir/" install +} + Property changes on: kodi-audioencoder-vorbis/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
