thanks, I will take a look and update the package in a couple of days. :)
Search Criteria
Package Details: limoo-git 20150209-1
Package Actions
| Package Base: | limoo-git |
|---|---|
| Description: | Limoo is multiplatform and modern image viewer, focused on better user interface... |
| Upstream URL: | http://labs.sialan.org/projects/limoo |
| Category: | multimedia |
| Licenses: | |
| Conflicts: | |
| Provides: | |
| Submitter: | tuxitop |
| Maintainer: | tuxitop |
| Last Packager: | tuxitop |
| Votes: | 6 |
| First Submitted: | 2012-03-29 20:37 |
| Last Updated: | 2015-02-09 20:11 |
Dependencies (7)
Required by (0)
Sources
Latest Comments
Comment by tuxitop
Comment by sdutz
Sorry, I forgot to add git to depends array, and also package need an update, but I don't know how it works as this is my first real try.
Comment by sdutz
Hi,
I had some free time and I'm using limoo too, so here is updated script.
# Maintainer: Ali Mousavi <ali.mousavi[at]gmail[dot]com>
pkgname=limoo-git
pkgver=20120330
pkgrel=1
pkgdesc="An image viewer using Qt, QML, C++."
url="http://getsilicon.org/limoo/"
arch=('x86_64' 'i686')
license=('GPLv3')
depends=('qt5-graphicaleffects' 'qt5-script' 'qt5-quickcontrols' 'exiv2')
makedepends=('make')
provides=("${pkgname/-git}")
conflicts=("${pkgname/-git}")
_gitroot="https://github.com/sialan-labs/limoo.git"
_gitname="limoo"
build() {
### Clone files...
cd "${srcdir}"
echo "${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"
### Build
msg "Starting build..."
rm -rf "$srcdir/$_gitname-build"
git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
cd "$srcdir/$_gitname-build"
mkdir build && cd build
qmake -r ..
make
}
package() {
echo "${pkgdir}"
cd "${srcdir}/$_gitname-build/build"
make INSTALL_ROOT="${pkgdir}" install
}
# vim:set ts=2 sw=2 et: