Merge branch 'master' of https://github.com/X-dark/ArchLinux
This commit is contained in:
commit
97c65933c2
2 changed files with 55 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
# Contributor: foxbunny <bg.branko@gmail.com>
|
||||
|
||||
pkgname=dispcalgui
|
||||
pkgver=0.8.1.9
|
||||
pkgver=0.8.5.2
|
||||
pkgrel=1
|
||||
pkgdesc="A GUI frontend for several utilities from the open source color management system Argyll CMS "
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -14,9 +14,11 @@ optdepends=('python2-numpy: to enable curve viewer'
|
|||
makedepends=('python>=2.5' 'libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 'setuptools>=0.6c11' 'xdg-utils')
|
||||
groups=('painters-studio-tools' 'painters-studio-extras' 'painters-studio-complete')
|
||||
install=${pkgname}.install
|
||||
source=("dispcalGUI-${pkgver}.tar.gz::http://dispcalgui.hoech.net/download.php?version=${pkgver}&suffix=.tar.gz" ${pkgname}.desktop)
|
||||
|
||||
md5sums=('1f93e612fc4de43ede542e1982bce206'
|
||||
#you may need to download this by hand (with wget) if curl is your download tool in makepkg
|
||||
source=("http://dispcalgui.hoech.net/download/dispcalGUI.tar.gz" ${pkgname}.desktop)
|
||||
|
||||
md5sums=('3a6808f724fb7f8233d3356541c00030'
|
||||
'a65019defc10243c7e0fd2925405d26e')
|
||||
|
||||
package() {
|
||||
|
@ -29,6 +31,9 @@ package() {
|
|||
install -Dm644 \
|
||||
"${srcdir}"/dispcalgui.desktop \
|
||||
"${pkgdir}"/usr/share/applications/${pkgname}.desktop
|
||||
|
||||
#udev rules are shipped with argyllcms
|
||||
rm -rf "${pkgdir}"/etc/udev/
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
|
|
47
pkgbuild/libcec-git/PKGBUILD
Normal file
47
pkgbuild/libcec-git/PKGBUILD
Normal file
|
@ -0,0 +1,47 @@
|
|||
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||
|
||||
pkgname=libcec-git
|
||||
pkgver=20120126
|
||||
pkgrel=1
|
||||
pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://github.com/Pulse-Eight/libcec"
|
||||
license=('GPL')
|
||||
makedepends=('git')
|
||||
depends=('udev>=151')
|
||||
provides=('libcec')
|
||||
conflicts=('libcec')
|
||||
options=('!libtool')
|
||||
|
||||
_gitroot="https://github.com/Pulse-Eight/libcec.git"
|
||||
_gitname="libcec"
|
||||
|
||||
build() {
|
||||
cd "$srcdir"
|
||||
msg "Connecting to GIT server...."
|
||||
|
||||
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"
|
||||
|
||||
autoreconf -vif
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_gitname-build"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in a new issue