From ed6bc39bc29cd6046b7bb7b16a74f33ad7478d30 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Fri, 5 Apr 2013 16:35:25 +0200 Subject: [PATCH] libcec-git PKGBUILD migrated to new VCS style --- .SRCINFO | 5 ++++- PKGBUILD | 31 ++++++++++--------------------- 2 files changed, 14 insertions(+), 22 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 56f3003..94d1835 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,8 @@ pkgbase = libcec-git pkgdesc = Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter - pkgver = 20130325 + pkgver = 2.0.4.77.g3ff78be pkgrel = 1 + epoch = 1 url = https://github.com/Pulse-Eight/libcec arch = i686 arch = x86_64 @@ -12,6 +13,8 @@ pkgbase = libcec-git provides = libcec conflicts = libcec options = !libtool + source = libcec::git+https://github.com/Pulse-Eight/libcec.git + md5sums = SKIP pkgname = libcec-git diff --git a/PKGBUILD b/PKGBUILD index 4aa2920..3f3f341 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,8 @@ # Maintainer: Cedric Girard pkgname=libcec-git -pkgver=20130325 +epoch=1 +pkgver=2.0.4.77.g3ff78be pkgrel=1 pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter" arch=('i686' 'x86_64') @@ -12,36 +13,24 @@ depends=('udev>=151' 'lockdev') provides=('libcec') conflicts=('libcec') options=('!libtool') +source=('libcec::git+https://github.com/Pulse-Eight/libcec.git') +md5sums=('SKIP') -_gitroot="https://github.com/Pulse-Eight/libcec.git" -_gitname="libcec" +pkgver() { + cd "$srcdir"/libcec + git describe --tags | sed 's|libcec-||;s|-|.|g' +} build() { - cd "$srcdir" - msg "Connecting to GIT server...." + cd "$srcdir"/libcec - if [[ -d "$_gitname" ]]; then - cd "$_gitname" && git pull origin - msg "The local files are updated." - else - git clone "$_gitroot" "$_gitname" - fi - - msg "GIT checkout done or server timeout" - msg "Starting build..." - - rm -rf "$srcdir/$_gitname-build" - git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" - cd "$srcdir/$_gitname-build" - - sed 's/^LIBS_LIBCEC="$LIBS".*/LIBS_LIBCEC="$LIBS -fPIC"/' -i configure.ac autoreconf -vif ./configure --prefix=/usr make } package() { - cd "$srcdir/$_gitname-build" + cd "$srcdir"/libcec make DESTDIR="$pkgdir/" install }