Package Details: llgal 0.13.19-1

Git Clone URL: https://aur.archlinux.org/llgal.git (read-only, click to copy)
Package Base: llgal
Description: On-line gallery generator based on iGal
Upstream URL: http://bgoglin.free.fr/llgal/
Licenses: GPL
Submitter: programmerq
Maintainer: lynix
Last Packager: fordprefect
Votes: 4
Popularity: 0.000000
First Submitted: 2009-04-26 05:33 (UTC)
Last Updated: 2019-04-09 14:33 (UTC)

Latest Comments

lynix commented on 2019-04-09 07:15 (UTC)

Here's my suggestion for an updated PKGBUILD (0.13.19, GitHub URL for sources): https://gist.github.com/lynix/f240a3a305b3f99a90469cc4bf370538

fordprefect commented on 2017-08-09 15:21 (UTC)

@jnbek: thanks for the sign of life, if you need any help shout out!

jnbek commented on 2017-08-09 15:17 (UTC)

@all, I apologize regarding the status of this pkgbuild. My build server suffered a serious drive failure and has been out of commission. I have a temporary build server nearly ready and will update this and the others of my packages soon(tm)

fordprefect commented on 2017-08-08 20:38 (UTC)

please rework this package 1) as hsyl20 already stated, developement moved to github, gna.org is not available anymore 2) || return 1 is deprecated and should not be used in PKGBUILDs anymore 3) please address the numerous issues found by namcap also, please indicate if you read comments, else I will contact you via email directly. thank you.

hsyl20 commented on 2017-07-05 22:26 (UTC)

gna host is dead. You should use the following: source=(https://github.com/bgoglin/llgal/archive/$pkgname-$pkgver.tar.gz) md5sums=('e8beb5980ff5beb49eb36d2bb244cca1') package() { cd "$srcdir/$pkgname-$pkgname-$pkgver"

Thah commented on 2016-09-29 20:34 (UTC)

By adding > make install-man DESTDIR="$pkgdir/" || return 1 > make install-doc DOCDIR="$pkgdir/usr/share/doc/llgal" || return 1 to the package() function you could add the IMHO quite helpful man pages and docs to the package.

hsyl20 commented on 2011-05-06 09:53 (UTC)

Updated PKGBUILD: # Contributor: Sylvain HENRY <hsyl20@gmail.com> pkgname=llgal pkgver=0.13.16 pkgrel=1 pkgdesc="On-line gallery generator based on iGal" arch=(x86_64) url="http://home.gna.org/llgal/" license=('GPL') depends=('perl>=5.10.0' 'perl-image-size' 'perl-locale-gettext') options=(!emptydirs) source=(http://download.gna.org/llgal/$pkgname-$pkgver.tar.bz2) md5sums=('e0c8d923ee6f9ba30ddc5de52f4ecf8b') build() { cd "$srcdir/$pkgname-$pkgver" sed -i 's/\/usr\/local/\/usr/g' Makefile make make install DESTDIR="$pkgdir/" # remove perllocal.pod and .packlist find "$pkgdir" -name perllocal.pod -delete find "$pkgdir" -name .packlist -delete }