From 6a1ea04e38e0c35af175adce446c313a19bc3187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Alexandre=20Silva=20Delgado?= Date: Sat, 24 Aug 2013 00:23:57 -0300 Subject: iceape-libre: fixing pkgbuild --- libre/iceape-libre/PKGBUILD | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libre/iceape-libre/PKGBUILD b/libre/iceape-libre/PKGBUILD index 7b467a8e3..efacd73ce 100644 --- a/libre/iceape-libre/PKGBUILD +++ b/libre/iceape-libre/PKGBUILD @@ -99,6 +99,8 @@ prepare() { } build() { + export DEBIAN_BUILD="comm-release" + cd "${srcdir}/${DEBIAN_BUILD}" export LDFLAGS="${LDFLAGS} -Wl,-rpath,/usr/lib/${_pkgname}" @@ -114,6 +116,8 @@ build() { } package() { + export DEBIAN_BUILD="comm-release" + cd "${srcdir}/${DEBIAN_BUILD}" make -j1 -f client.mk DESTDIR="${pkgdir}" install -- cgit v1.2.3-2-g168b From f7b995ebfcd0663b969101ef338990540c09bbb5 Mon Sep 17 00:00:00 2001 From: Alon Ivtsan Date: Sat, 24 Aug 2013 08:55:29 +0300 Subject: updating youtube-dl-current PKGBUILD --- pcr/youtube-dl-current/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcr/youtube-dl-current/PKGBUILD b/pcr/youtube-dl-current/PKGBUILD index b3ce5f4f4..b6b7526e6 100644 --- a/pcr/youtube-dl-current/PKGBUILD +++ b/pcr/youtube-dl-current/PKGBUILD @@ -5,7 +5,7 @@ pkgname=youtube-dl-current _pkgname=youtube-dl provides=(youtube-dl) -pkgver=2013.08.22 +pkgver=2013.08.23 pkgrel=1 pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites" arch=('any') @@ -14,7 +14,7 @@ license=('custom') depends=('python') makedepends=('python-distribute') source=(http://youtube-dl.org/downloads/${pkgver}/${_pkgname}-${pkgver}.tar.gz{,.sig}) -md5sums=('ec5a15c938496f7654a25a6b181d0b89' +md5sums=('50c348f8dc28adff28d76420deff7297' 'SKIP') prepare() { -- cgit v1.2.3-2-g168b From 207752a24faf0847885ceb76228e48bf28d04a72 Mon Sep 17 00:00:00 2001 From: Alon Ivtsan Date: Sat, 24 Aug 2013 09:09:49 +0300 Subject: adding libquvi-scripts-current PKGBUILD to pcr --- pcr/libquvi-scripts-current/PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pcr/libquvi-scripts-current/PKGBUILD diff --git a/pcr/libquvi-scripts-current/PKGBUILD b/pcr/libquvi-scripts-current/PKGBUILD new file mode 100644 index 000000000..ed6aa3a03 --- /dev/null +++ b/pcr/libquvi-scripts-current/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 188870 2013-06-23 17:45:51Z heftig $ +# Maintainer: Lukas Fleischer + +pkgname=libquvi-scripts-current +_pkgname=libquvi-scripts +provides=(libquvi-scripts) +pkgver=0.4.17 +pkgrel=1 +pkgdesc='Library for parsing video download links.' +arch=('any') +url='http://quvi.sourceforge.net/' +license=('LGPL') +depends=('curl' 'lua') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/quvi/${_pkgname}-${pkgver}.tar.xz"{,.sig}) +md5sums=('8a887905a368bf31e0ace28e49b5c800' + 'SKIP') + +build() { + cd "${_pkgname}-${pkgver}" + ./configure --prefix=/usr --with-nsfw --with-nlfy + make +} + +package() { + cd "${_pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} -- cgit v1.2.3-2-g168b